日期:2014-05-17  浏览次数:20406 次

Redirect跳转到新页面前如何alert提示,求指点
Redirect(string url,bool endResponse)
当endResponse 为 flase 时 执行完后面代码之后再跳转到新页面

C# code
Response.Redirect("404.html",false);
Response.Write("<script type='text/javascript'>alert('为什么没有提示呢?');</script>");
File.AppendAllText(HttpContext.Current.Server.MapPath("Redirect.txt"),"false\r\n",System.Text.Encoding.GetEncoding("gb2312"));


文件写入了,但是为什么没有提示呢?

------解决方案--------------------
Response.Write("<script type='text/javascript'>alert('为什么没有提示呢?');window.location='新页面的url';</script>");
Response.End();
是可以的。

前面不要写东西了