Tagged Questions

23
votes
9answers
4k views

Is it secure to store passwords in cookies?

My web application's home page has a RememberMe checkbox.. If the user checks it, i ll store emailId and password in cookies.. My code is if (this.ChkRememberme != null && ...
2
votes
1answer
1k views

Asp.net “Remember Me” does not work through FormsAuthentication.RedirectFromLoginPage()

In my login page I'm using FormsAuthentication.RedirectFromLoginPage() to redirect to Home page after the user is validated. But it doesn't seem to obey CreatePersistenceCookie parameter. I have ...
2
votes
1answer
1k views

How to handle “Remember me” in the Asp.Net Membership Provider

Ive written a custom membership provider for my ASP.Net website. Im using the default Forms.Authentication redirect where you simply pass true to the method to tell it to "Remember me" for the ...
1
vote
2answers
193 views

Persistent cookie timeout with FormsAuthentication

I am creating some "Remember Me" functionality as part of logging in. When I create a persistent cookie during the login process with the following: FormsAuthentication.SetAuthCookie("someusername", ...
1
vote
1answer
89 views

if the user checks remember me on the asp login control, when will the user have to login again?

just trying to get a better understanding of the concepts involved with this so i can make better decisions on implementing the login based on the requirements i've been given. in the case where the ...
1
vote
1answer
400 views

remember me in login form

I have a "login" control that I'd like to have a "remember me" option. How can I accomplish this?
1
vote
4answers
239 views

RememberMe option in an asp.net web application

what are the possible ways of implementing remember me option in an asp.net web application?
1
vote
1answer
522 views

Form authentication doesn't redirect to defaultUrl while implementing “remember me” feature in login

I have an ASP.Net website which has a "remember me" feature for Login page. It uses form based authentication and the defaultUrl points to a Default page, but when the site is visited even though the ...
1
vote
2answers
2k views

Implementing “Remember me” Functionality in ASP.NET

What is the best way to implement 'remember me' functionality on an ASP.NET web site? Should I use custom cookies or is there a simpler method?
0
votes
2answers
67 views

Redirect to default page if the user has authentication cookie

I have the following code in my asp.net login page: if (Request.QueryString["ReturnUrl"] != null) FormsAuthentication.RedirectFromLoginPage(UserLogin.UserName, UserLogin.RememberMeSet); ...
0
votes
5answers
268 views

How can I log any login operation in case of “Remember Me” option?

I have an asp.net login web form that have ( username textBox - password textBox ) plus Remember Me CheckBox option When user login i do the below code if (provider.ValidateUser(username, ...
0
votes
1answer
237 views

Membershipprovider: Automatically logging out when session ends

I have some problems with getting my website to log out the authenticated user automatically when the session ends (the user closes the browser). This is what I have in my web.config: ...
0
votes
2answers
878 views

asp.net “Remember Me” cookie

I have implemented remember me option in my asp.net webform by using this, protected void LBtnSubmit_Click(object sender, EventArgs e) { if (this.ChkRememberme != null && ...