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? --