I am using ASP.NET MVC for the first time, and so far everything went fine. However, one small question I was hoping would be someone to advise me.
When a page can perform several tasks, and each of them is processed on the server, evaluating the request values, recommended solutions for creating a request based on requests.
For example, a list of products that the user can sort, print, and filter.
The user is sorting -? sortcolumn = example
User changes page in list -? sortcolumn = example & page = 3
The user performs a filter on the list -? sortcolumn = example & page = 3 & filter = expr
The actionlinks for each of these tasks are completely separate from the others, so I need route values ββin all Html.ActionLink expressions.
Hoping someone can advise.
source
share