Add "Remember me on next login" to the login Control"

Source: Internet
Author: User

I will show you how easy it is to add a "Remember me on next login" feature so people is automatically logged in when visiting your site in the future.

First just add a checkbox (I havn't renamed it in this sample, just calling it checkbox1) in your login form:

Then in your code handler for the button click:

 
 
 
Private VoidBtnlogin_click (ObjectSender, system. eventargs E)
{
If(Formsauthentication. Authenticate (txtid. Text, txtpwd. Text ))
{// It went well
Formsauthentication. redirectfromloginpage (txtid. Text, checkbox1.checked ); 
}
Else
{
Labelerror. Text ="Error logging in";
}
}

So the last parameter to redirectfromloginpage is checkbox1.checked which will then handle everything from us.

Under the Hood it is of course solved by setting a cookie, but that's nothing we have to worry about. Sometimes you just gotta love ASP. NET!

 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.