回 帖 发 新 帖 刷新版面

主题:Response的问题

首先:
Response.write();
Response.Redirect();
这样的话,C#只是执行Response.Redirect语句,前一句被自动屏蔽了。
请问有什么方法能让他们共存吗?
列:Response.write(<script>alert(“请输入用户名”)</script>);
Response.Redirect("index.aspx");
先显示一句:请输入用户名,然后在跳转到index.aspx 登陆页面

回复列表 (共2个回复)

沙发

Response.write("<script>alert('请输入用户名');window.location.href='index.aspx';</script>");

板凳

[quote]Response.write("<script>alert('请输入用户名');window.location.href='index.aspx';</script>");
[/quote]

我来回复

您尚未登录,请登录后再回复。点此登录或注册