然后就出现这个东西了....
代码是这样子的:在Global.asax
protected void Application_BeginRequest(object sender, EventArgs e)
{
//判断请求的内容长度是否超过了设置的字节数
if (context.Request.ContentLength > maxRequestLength)
{
try
{
if (!cs.Contains("error"))
Server.Transfer(this.Request.Url.LocalPath + "?" + cs + "&error=" + Server.UrlEncode("请上传小于10M的文件"));
else
Server.Transfer(this.Request.Url.LocalPath + "?" + cs);
}
catch (Exception ex)
{
}
}
}
这个~~~从错误来说,看不出什么,从你的代码来看,也看不出什么啊。
Server.Transfer 是执行一个页面的代码,不是跳转!