返回到 asp.net 中的文件夹
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
波形符
~
对于重定向非常有用,它表示您的网站根目录。因此,无论您在网站上的哪个位置,都可以重定向到相对于域根目录的文件夹。我希望这就是你的意思!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!如果您的应用程序中有 admin 文件夹,则重定向它
如果您的应用程序中没有 admin 文件夹,则重定向它
尝试这一切...
if you have admin folder in your application then redirect it
if you don't have admin folder in your application then redirect it
Try this all ...