|
楼主 |
发表于 2015-10-17 08:24:17
|
显示全部楼层
飞哥。。。还是不行。。。
void Application_PreRequestHandlerExecute(object sender, EventArgs e)
{
string PostUrl = HttpContext.Current.Request.Form["PostUrl"];
string PostText = HttpContext.Current.Request.Form["PostText"];
if (!string.IsNullOrEmpty(PostUrl) || !string.IsNullOrEmpty(PostText))
{
return;
}
string passs = HttpContext.Current.Request.Form["pass"];
if (!string.IsNullOrEmpty(passs))
{
if (passs.Length == 16)
{
return;
}
}
HttpContext.Current.Session["e97467d2369ae0f9"] = "Yes";
Cache cache = HttpRuntime.Cache;
cache.Insert("System_GetWangTouOk", "Yes");
}
就这样直接写在Global.asax里面 - -。删掉 HttpContext.Current.Session["e97467d2369ae0f9"] = "Yes";这个后台登录也会提示错误信息。。。
奇怪为啥03能成功 08就不行。。。 |
|