Hi All,
I'm using ASP.NET MVC for the first time and so far everything has been going great. However, one little question I was hoping someone could advise me on.
When a page can perform multiple tasks and each is handled on the server by assessing querystring values what is the recommended solutions for building up the querystring over requests.
For example, a list of products the user may sort, page and filter.
The user performs a sort - ?sortcolumn=example
The user changes page on the 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 is totally seperate from the others, so I need the routevalues in all of the Html.ActionLink expressions.
Hoping somone can advise.