我为登录页面编写了一个 web 方法函数。当用户成功通过服务器身份验证时,我想将他重定向到具有指定 va 的特殊页面
[WebMethod]
public static string loginmtd(string username, string password , string chk)
{
datatable dt=filltable();//for bring data
if (dt.Rows.Count==1)
{
if (chk == "ok")
{
HttpCookie cook = new HttpCookie("userauth");
cook["user"] = usern;
cook["pass"] = passw;
HttpContext.Current.Response.Expires = 60000;
HttpContext.Current.Response.AppendCookie(cook);
}
HttpContext.Current.Response.Redirect("master.aspx?uid=" + username);
return result;
}
else
{
result = "no";
}
}