views:

87

answers:

3

Hai guys,

  • what are the possible ways of implementing remember me option in an asp.net web application? alt text
+2  A: 

If you're using Forms Authentication, just pass true as a second argument to RedirectFromLoginPage.

Otherwise, idea is essentially the same: you need to create a so-called "persistent cookie", which means that you have to specify correct cookie expiration date.

Anton Gogolev
which uses cookies :)
Jamiec
+1  A: 

Cookies, Cookies or Cookies.

Jamiec
A: 

Take a look here: How to: Create an ASP.NET Login Page

<asp:Login ID="Login1" 
           runat="server" 
           DestinationPageUrl="~/MembersHome.aspx">
</asp:Login>
Rubens Farias