assume I have an Edit.cshtml
view in an asp.net-mvc 5 application with a form of many text boxes for editing properties.
I want to have a link e.g. @Html.ActionLink
or @Html.AjaxLink
(not sure which way is the correct way of doing it) when clicked, will grey out the current view and put it in the background, and add a partial view to the foreground with a form with more texboxes to edit (and has a save button for submitting the form)
What is this process called and how do I do this?