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.
当我在浏览器中输入 URL 时,我想调用特定的 .aspx 页面。有可能吗?我需要在 web.config 文件中做一些更改吗?
假设您有两个页面 page1.aspx 和 page2.aspx,并且如果有人写 page1.aspx 并且应该重定向到 page2.aspx,您希望这样。只需调用 page1.aspx 上的重定向到 page2.aspx。
在page1.aspx上写如下代码
response.redirect("http://www.page2.aspx");