. NET Login Simple application code

Source: Internet
Author: User

This is an entry-level ASP tutorial. NET User login code, let's look at the code below.

Login.aspx.cs

protected void Btnlogin_click (object sender, EventArgs e)
{

string username = txtUsername.Text;
string userpwd = Txtuserpwd.text;

UserInfo userobj = Useroper.checklogin (username, userpwd);
if (userobj = null)
Response.Write ("<script>alert (' username or password is wrong! '); </script> ");
Else
{
session["userinfo"] = userobj;

Formsauthentication.setauthcookie (Userobj.username, false);
Response.Cookies.Add (new HttpCookie ("username", userobj.username));
Response.Redirect (Formsauthentication.defaulturl);
}
}

Configure Web.config to verify the current login, no matter which page is running, as long as no login will automatically jump to the login Login.aspx page

Web.config:

 

<system.web>
<authorization>
<deny users= "?" />
</authorization>

<authentication mode= "Forms" >
<forms loginurl= "Login.aspx" timeout= "2880" defaulturl= "default.aspx"/>

</authentication>

</system.web>

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.