asp.Net単純単点登録技術分析
1062 ワード
コードは次のとおりです.
/// (Single Sign On)
public void SSOMethods(string username, string password)
{
// ……
int result = CheckLogin(username, password);
if(result>0)
{
// ,
string key = string.Format("{0}_{1}",username, password);
// Cache key
string userCache = Cache[key].ToString();
//
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(" !");
}
else
{
Repsonse.Write(" , !");
return;
}
}
else
{
Response.Write(" !");
}
}