string username = this.user.Text;
string pwd = this.pwd.Text;
if (username.Equals("user") && pwd.Equals("password"))
{
Response.Cookies["user"].Value = "aaa";
Response.Redirect("~/admin/Default.aspx");
}
else
{
Page.ClientScript.RegisterStartupScript(this.GetType(), "msgerror", "alert('登录失败!');", true);
}
这是一个方法体。这样的登录验证在本地能用,为什么网站一发布在互联网上就登录不上了?也没有提示登录失败,而是直接跳到首页。