返回到 asp.net 中的文件夹

发布于 2024-10-31 21:45:31 字数 280 浏览 1 评论 0原文

protected void Button1_Click(对象发送者,EventArgs e) { Response.Redirect("Page2.aspx"); } 这是继续 .aspx 的代码,但是如果我想进入解决方案资源管理器中的文件夹,尝试使用位置但不起作用,该怎么办 谁知道发一下。

这是位置> 网站\管理员 -新闻.aspx -项目.aspx 我在 news.aspx 中创建按钮返回到管理,当我点击按钮时,位置是下一个 > website\admin\admin 为什么他重复 admin ?

protected void Button1_Click(object sender, EventArgs e)
{
Response.Redirect("Page2.aspx");
}
this is code to go on .aspx but what if i want to go in Folder in my solution explorer, tried with location but it dont work
Who knows post it.

this is location >
website\admin
-news.aspx
-project.aspx
and i created in news.aspx button go back to admin, and when i hit button location is next > website\admin\admin why he duplicate admin ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

悲凉≈ 2024-11-07 21:45:31
Response.Redirect("~/Folder/Page.aspx");

波形符 ~ 对于重定向非常有用,它表示您的网站根目录。因此,无论您在网站上的哪个位置,都可以重定向到相对于域根目录的文件夹。我希望这就是你的意思!

Response.Redirect("~/Folder/Page.aspx");

The tilde ~ is very useful for redirects, it signifies your site root. So wherever you are on the site, you can redirect to folders relative to the domain root. I hope this is what you meant!

话少情深 2024-11-07 21:45:31

如果您的应用程序中有 admin 文件夹,则重定向它

Response.Redirect("admin/page.aspx");或者
Response.Redirect("~/admin/page.aspx");

如果您的应用程序中没有 admin 文件夹,则重定向它

Response.Redirect("page.aspx");

尝试这一切...

if you have admin folder in your application then redirect it

Response.Redirect("admin/page.aspx"); or
Response.Redirect("~/admin/page.aspx");

if you don't have admin folder in your application then redirect it

Response.Redirect("page.aspx");

Try this all ...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文