Remember me in Login control.

T

TJ

Hi,

Environment : Asp.net 2.0 / C#

As you know, there is a "Remember me" check box in Login control is VS.NET
2005.
It allows you to get in the page without logging it if user closes browser,
instead of logging out.
It works...however, in the authenticate event, what if session is used?

For example,
In Login.aspx
....Login1_Authenticate....method
{
.....
Session("Test") = "Authentication is done".
e.Authenticated = true;
}

In Default.aspx.

.....Page_Load......
{
...
Response.Write(Session["Test"].ToString());
}


Suppose that user log-in with checked "Remember me" , ...then it displays
"Authentication is done"....
Without explict logging out, user closes the browser, then revist the
default.aspx page..since the user has set the "Remember me", it won't ask the
login page, then load the Default.aspx....According to my testing, the
Session variable was null at this point...
It makes sense because session is lost when browser is closed.....
However...how do I make this working for "Remember me" scenario?
If an user checks the "Remember Me" checkbox, they can close the browser
without logging out, then revisit the page again without logging in
again....In this scenario(Remember me)...I guess I need to keep somehow the
Session...
Should I use something other than in-proc session state??
Any way I can work-around in in-proc session mode for this?

Thanks,

...............................................TJ
 
C

Cowboy \(Gregory A. Beamer\)

If you kick the person to the login page, it should automatically cycle him
back to the page he desires. If you want a user to be remembered for full
session time, even if he drops his browser, you can move to SQL Server
sessions, but it will not remember him days from now and will lead you back
to do (a deer, a female deer ;->).
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,769
Messages
2,569,581
Members
45,057
Latest member
KetoBeezACVGummies

Latest Threads

Top