getting back to folder in asp.net
受保护的void按钮1_click(对象发送方,事件参数e){response.redirect("page2.aspx");}这是继续.aspx的代码,但是如果我想在我的解决方案资源管理器中进入文件夹,尝试使用location,但它不起作用怎么办?谁知道张贴它。
这是位置>网站管理员Ne.ASPXASPX我在news.aspx中创建了一个按钮,回到admin,当我点击按钮location is next>websiteadminadmin时,他为什么要复制admin?
1 | Response.Redirect("~/Folder/Page.aspx"); |
tilde
如果应用程序中有管理文件夹,则将其重定向。
Response.Redirect("admin/page.aspx"); or
Response.Redirect("~/admin/page.aspx");
如果应用程序中没有管理文件夹,请将其重定向。
Response.Redirect("page.aspx");
试试这一切…