I have a page containing a list of clients with an ActionLink that allows the user to display (or hide) "inactive" clients. The showInactive=True
is attached to the url as a querystring to the controller. Having displayed "inactive" clients I then edit one of them but when I save any changes or return to the list the querystring is gone. What is the best way to persist the querystring across those requests? I have tried the TempData dictionary but clearly I was attempting to use it for something it isn t designed to handle.
I am trying to make a WebForms project and ASP.NET MVC per this question. One of the things I ve done to make that happen is that I added a namespaces node to the WebForms web.config: <pages ...