Tagged Questions
0
votes
1answer
174 views
Remember me not working chrome and IE
I am working in asp.net and c#.In my application i have login page for which i am having remember me feature.My code works well in firefox but not working in chrome and IE.please let me know where i ...
0
votes
0answers
47 views
Charles Miller's solution for Remain Logged In cookie?
I was reading this answer about how /why/why not should I implement "remember me" option.
However I'm more interested in this section
If you DO decide to implement persistent login cookies, this ...
1
vote
3answers
3k views
Object reference not set to an instance of an object in Remember Me
I am writing code to store cookies for Remember Me next time in Login control. Which this will store the user's username on the textbox if the user had checked the "Remember Me" check box. And my ...
1
vote
0answers
294 views
asp:Login “Remember me” is expiring sooner than the full 50 years
The ASP.net <asp:Login> control has an ability to display a Remember me next time checkbox. If checked, this Login.RememberMeSet Property is set.
From MSDN:
When the RememberMeSet property ...
0
votes
2answers
1k 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);
...
6
votes
2answers
5k 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
643 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 ...
0
votes
5answers
490 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
581 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:
...
2
votes
1answer
3k 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 ...
3
votes
3answers
5k 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 && ...
2
votes
3answers
4k 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
1answer
836 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
765 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?
33
votes
10answers
10k 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 && ...
1
vote
1answer
968 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 ...
3
votes
2answers
3k 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?



