asp.net问题。弹出对话框以后,在转向另一页
Response.Write("<script>alert('你没有登陆')</script>");
Response.Redirect("main.aspx");
是上面这段代码。他总是现转向另一页。不弹出警告
参考答案:可以将转向放到script里面
Response.Write("<script>alert('你没有登陆'); window.location.href='main.aspx';</script>");
Response.Write("<script>alert('你没有登陆')</script>");
Response.Redirect("main.aspx");
是上面这段代码。他总是现转向另一页。不弹出警告
参考答案:可以将转向放到script里面
Response.Write("<script>alert('你没有登陆'); window.location.href='main.aspx';</script>");