User-708344877 posted
Okay, I've been all over this site, and all over the Internets trying to figure out why that stupid "remember me" box doesn't remember me for more than 20 minutes or so. It seems that no matter what I do, the persistence is no more than a session-type
implementation. I've added the following to my web.config in the <system.web> section:
<
authentication
mode="Forms">
<forms
cookieless="UseCookies"
domain="dallaspistol.com" />
</authentication>
In an effort to force the use of persistent cookies. Nada. Nothin'. Zip. 20-30 minutes, and it's login-again-time. That sucks.
In Login.aspx, I've set the RememberMeSet attribute to "true" in the Login control (<asp:Login
ID="Login1"
runat="server"
RememberMeSet="true">). Again, no change in behavior.
This seems like a simple thing to do, but darned if I can figure it out. I want the "Remember Me" to work until I explicitly log out, period. Remember me for forever, or even a couple of weeks, or something.
Surely I'm missing something simple. I throw myself on the mercy of this forum. Help.
jr