标签:
使用三个页面来模拟这个过程:Default.aspx、Index.aspx、Login.aspx
Default.aspx.cs中的代码:
protected void Page_Load(object sender, EventArgs e) { if (!this.IsPostBack) { string fullName = Page.User.Identity.Name; string[] domain = fullName.Split(‘\\‘); if (domain.Length>1 && domain[0] == "SJZX") { Session["name"] = domain[1]; // 验证成功 Response.Redirect("Index.aspx"); } else { // 验证失败,跳转到LOGIN.aspx页面进行验证 Response.Redirect("Login.aspx"); } } }
标签:
原文地址:http://www.cnblogs.com/HelsingWang/p/4186377.html