Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我单击提交按钮并单击按钮时,我已经编写了一个 Response.Redirect 到一个新网页,它首先提示一条消息。
您发送的数据将被重定向到另一台服务器。继续?
如果我说是,它会给出错误响应未知。
protected void Button1_Click(object sender, EventArgs e) { Response.Redirect("Default2.aspx",false); }
试试 Server.Transfer("Default2.aspx");
此功能节省了服务器的双重行程。
Response.Redirect() 向客户端发送重定向标头,客户端自己请求新页面。
Server.Transfer() 停止渲染当前页面并开始渲染另一个页面。
尽量不要用“假”只写:
Response.Resirect("Default2.aspx");