gpt4 book ai didi

asp.net - 使用 Response.Redirect() 到相对路径

转载 作者:行者123 更新时间:2023-12-04 01:55:28 28 4
gpt4 key购买 nike

我正在使用 ASP.net。我的网站托管在一个子文件夹中 test在 IIS 根目录下。所以default.aspx的url是http://localhost/test/Default.aspx .从 default.aspx,我想使用 Reponse.Redirect()使用相对路径重定向到同一网站内的另一个 url,http://localhost/test/whatever .

我试过

Response.Redirect("/whatever");


Response.Redirect("~/whatever");

他们都重定向到 http://localhost/whatever .请注意 Redirect方法使用 http://localhost而不是 http://localhost/test/作为基本网址。

有任何想法吗?

谢谢。

最佳答案

尝试:

Response.Redirect("hello");


Response.Redirect("./hello");

享受!

关于asp.net - 使用 Response.Redirect() 到相对路径,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2960702/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com