The initial URL could include a var, but that wouldn't be passed on to the redirect URL unless you explicitly add it. You could check for the var, store the choice in the session, redirect, and subsequently just check the session.
Anthony On Sunday, August 26, 2012 11:01:52 PM UTC-4, 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? > --

