User1501155440 posted
What is the best way to setup a mobile login page? My primary concern is making sure the "Keep me logged in" works for regular users (login.aspx) and mobile users (/mobile/login.aspx).
So... should I check in my global.asax for a mobile device, then redirect from there?
I am worried if I start redirecting in my global.asax I might cause authentication issues. For example, a mobile user hits the site and it redirects to the /mobile/login.aspx page. But, because my Forms Authentication has defaultUrl=default.aspx
I am not sure where this will direct them too, if they have previously selected "Keep me logged in" from the /mobile/login.aspx page.
Any insight would be greatly appreciated!