A POST doesn't seem appropriate. I would say either a query arg (why is that a problem?) or use session.
On Sunday, August 26, 2012 8:01:52 PM UTC-7, Mark Li wrote: > > I want a link that will redirect users to the desktop view of my page > (from the mobile view), where I will store a session variable to remember > that the user wants to stay in desktop view. > > However, I would rather not use URL args because I don't want the args, > like '?mobile=false', attached to the redirected URL. I was thinking about > a form with a fixed value, where the 'submit' button would set the request > variable mobile=false and redirect to the desktop view. Is there a more > elegant way to do this, rather than using a form to avoid URL args? > --

