Standard way to persist data between requests in ASP.NET-MVC

Posted by Nate Bross on Stack Overflow See other posts from Stack Overflow or by Nate Bross
Published on 2010-03-18T16:58:51Z Indexed on 2010/03/18 17:01 UTC
Read the original article Hit count: 655

Filed under:
|
|
|

What is the most standard or best way to persist data between requests?

Should I use cookies or session variables? I'm interested in keeping data like sort order, sort column, and page number (for paginiation).

I'm coming from a webforms background so normally this type of thing was automatically handled for me in the viewstate of the controls I was using.

© Stack Overflow or respective owner

Related posts about asp.net-mvc

Related posts about session