Question: I need step by step answers please Add About Us Functionality Watch the video and be sure to create your views like the video shows.

I need step by step answers please Add About Us Functionality Watch the video and be sure to create your views like the video shows. AboutUs Controller Create a new AboutUs controller. This controller will have a get and post ActionResult methods for Index() and a get and post ActionResult methods for More(). Index()get o Create a user object o Populate your information in the properties; *dont use the currently logged in user; enter your own information o Return that user object to the view Index()post o Use the FormCollection col object to determine which button is pressed. If the more button is pressed to go the AboutUs/More view. If the close button is pressed go back to Home/Index (Hint #1) More()get o Create a blank user object o Populate your information in the properties; *dont use the currently logged in user; enter your own information o Return that user object to the view More()post o Go back to AboutUs/Index (Hint #1) The AboutUs controller will have two views: Index.cshtml and More.cshtml. Index.cshtml Add an image (png, jpg, etc.) of yourself to your Visual Studio project and use the html tag to display the image User model (display first name, last name, email address) Youll need to add a BeginForm()(Hint #2) Youll need to display the user-image-container box with: o Your image o First and last name o Email address link (**you dont have to send an email; just prepare to send an email)(Hint #3) Two Buttons (pay attention to the value property of these buttons; they will be used in the post methods of your controller) o More: use far fa-info-circle for your Font Awesome image o Close: use fa fa-times for your Font Awesome image Add the following CSS to the top of the Index.cshtml .user-image-container { height: unset; } More.cshtml User model (display first name, last name) Display the .FirstName and .LastName properties Youll need to add a BeginForm()(Hint #2) One Button o Close: use fa fa-times for your Font Awesome image Layout.cshtml Add a new main menu link to the Layout.cshtml. This will link to the AboutUs/Index view. This should be the last menu item and it should display regardless of a user being logged in. Use the following Font Awesome for this link: Hint #1: RedirectToAction Hint #2: @using (Html.BeginForm(FormMethod.Post)){//your div that contains your buttons will go here } Hint #3: mailto: property of a tag

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!