Within an MVC 5 app, I have a view with an ActionLink like this:
@Html.ActionLink("Publish", "Index", "Publish", item, null)
When I hover over the link, the URL shows that the following will be sent to the view as parameters:
?Title=FilePicker&Language=JavaScript
How do I access those parameters so that I can display them on the second view?
For example, I'm trying to do the following, but do not know what needs to go into the Value attribute:
<input type="text" class="form-control" id="search" value="NEED TO ACCESS TITLE PARAM HERE" />