ScriptManager.RegisterClientScriptBlock

ScriptManager.RegisterClientScriptBlock(this.Page, GetType(), "perror", "alert(\"密码不正确!\");document.all.tbxPwd.focus();", true);
//System.Console.WriteLine("你的密码是错误的。");
Response.Redirect("Failure.aspx");
这个语句只有在页面加载完以后才会调用。如果页面有跳转语句的话,他是不会起作用的。
所以也不能用于中间输出语句用。

你可能感兴趣的:(manager)