本文整理汇总了C#中DAL.ValidateAdminUser方法的典型用法代码示例。如果您正苦于以下问题:C# DAL.ValidateAdminUser方法的具体用法?C# DAL.ValidateAdminUser怎么用?C# DAL.ValidateAdminUser使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类DAL
的用法示例。
在下文中一共展示了DAL.ValidateAdminUser方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: btnSubmit_ServerClick
private void btnSubmit_ServerClick(object sender, System.EventArgs e)
{
string _userName = string.Empty;
string _password = string.Empty;
_userName = txtUserName.Value;
_password = txtUserPass.Value;
DAL _dal = new DAL();
if (_dal.ValidateAdminUser(_userName, _password))
{
//Create a session for this logged-in user.
_userState.UserID = "9999";
_userState.UserName = _userName;
_userState.IsActive = true;
_userState.IsAdmin = true;
_siteUser.UserState = _userState;
FormsAuthenticationTicket tkt;
string cookiestr;
HttpCookie ck;
tkt = new FormsAuthenticationTicket(1, txtUserName.Value, DateTime.Now, DateTime.Now.AddMinutes(30), chkPersistCookie.Checked, "your custom data");
cookiestr = FormsAuthentication.Encrypt(tkt);
ck = new HttpCookie(FormsAuthentication.FormsCookieName, cookiestr);
if (chkPersistCookie.Checked)
ck.Expires = tkt.Expiration;
ck.Path = FormsAuthentication.FormsCookiePath;
Response.Cookies.Add(ck);
string strRedirect;
strRedirect = Request["ReturnUrl"];
if (strRedirect == null)
{
strRedirect = "~/Default.aspx";
}
else
{
Response.Redirect(strRedirect, chkPersistCookie.Checked);
}
}
else
Response.Redirect("logon.aspx", true);
}