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!") ");
}
}
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.