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.
如果
我在一个运行 winxp 的网络上有两台 5v IIS 服务器,每台服务器都托管一个单独的站点,
当在 site1 上单击按钮时,通过使用 response.redirect("~/site2") 来关联站点之间的导航。
这会产生任何错误的机会,比如
您已连接到没有此页面的 server1!还是其他 IIS 服务器会读取浏览器请求并显示页面?
它应该只是询问,因为我想知道在一个网络上拥有两个网络服务器的缺点。
如果您从字面上使用response.redirect("~/site2"),那么它不会从一个站点导航到另一个站点。~/site2 将被解释为当前 Web 应用程序中的 site2 文件夹。您将需要使用绝对 URL,例如response.redirect("http://xpmachine2/site2")
response.redirect("~/site2")
response.redirect("http://xpmachine2/site2")