Persisting querystring parameter throughout site in ASP.Net MVC 2
Posted
by Picflight
on Stack Overflow
See other posts from Stack Overflow
or by Picflight
Published on 2010-05-14T15:18:59Z
Indexed on
2010/05/14
15:34 UTC
Read the original article
Hit count: 627
http:www.site1.com/?sid=555
I want to be able to have the sid parameter and value persist whether a form is posted or a link is clicked.
If the user navigates to view that implements paging, then the other parameters in the querystring should be added after the sid.
http:www.site1.com/?sid=555&page=3
How can I accomplish this in Asp.Net Mvc 2?
© Stack Overflow or respective owner