asp.net simple single sign-on technology analysis

Source: Internet
Author: User
Tags httpcontext key net string
The code is as follows:
Copy Code code as follows:
Single sign-on (Sign on)
public void Ssomethods (string username, string password)
{
Judge the login situation here the method omits ...
int result = Checklogin (username, password);
if (result>0)
{
Unique identification, can be set by itself
String key = String. Format ("{0}_{1}", username, password);
Get the key value in cache
String usercache = Cache[key]. ToString ();
To determine if it is empty
if (string. IsNullOrEmpty (Usercache))
{
TimeSpan sessiontimeout = new TimeSpan (0,0,httpcontext.current.session.timeout,0,0);
HttpContext.Current.Cache.Insert (Key,key,null,datetime.maxvalue,sessiontimeout,cacheitempriority,notremovable, NULL);
session["User"] = key;
Response.Write ("<font color=red> login successful!) </font> ");
}
Else
{
Repsonse.write ("<font color=red> Sorry, you have already logged in elsewhere!" </font> ");
Return
}
}
Else
{
Response.Write ("User name does not exist!") ");
}
}


Related Article

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.