I am using FormsAuthenticaion in my ASP.NET MVC Application. A couple of my users are unable to log in as they do not have cookies enabled. I tried using the cookieless=autodetect attribute, but it doesn't seem to work. When cookies are disabled, the
autodetect feature makes all URLS into it http://www.domain.net/(X(1))/ as expected leaving a placeholder for the authentication token in the URL, however I am still unable to log in - it never populates the URL with the authentication token.
if I use cookieless="useuri" it works fine without cookies, but even with cookies I get the ugly authentication token in my URLS
Has anyone managed to make this work in MVC? Am I missing a step to enable cookieless authentication via Autodetect?
reach4thelas...
Member
10 Points
26 Posts
cookieless="autodetect" not working in MVC
Mar 30, 2009 05:39 PM|LINK
I am using FormsAuthenticaion in my ASP.NET MVC Application. A couple of my users are unable to log in as they do not have cookies enabled. I tried using the cookieless=autodetect attribute, but it doesn't seem to work. When cookies are disabled, the autodetect feature makes all URLS into it http://www.domain.net/(X(1))/ as expected leaving a placeholder for the authentication token in the URL, however I am still unable to log in - it never populates the URL with the authentication token.
if I use cookieless="useuri" it works fine without cookies, but even with cookies I get the ugly authentication token in my URLS
Has anyone managed to make this work in MVC? Am I missing a step to enable cookieless authentication via Autodetect?
cookies cookieless autodetect aspnetmvc mvc