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.
我使用此代码来隐藏错误。
<customErrors defaultRedirect="ErrorServer.aspx" mode="On" />
我想为我的错误页面设置后退按钮,当用户按下按钮时,它会转到用户来自该页面的页面。这意味着每次返回的 URL 都会不同!如何在我的页面中添加后退按钮?谢谢
您可以在错误页面上查看引用 URL。
所以你的前端可以有这个:
<asp:HyperLink ID="hypBackLink" Text="Go Back" runat="server" />
在您的 Page_Load 事件中:
if(Request.UrlReferrer != null) hypBackLink.NavigateURL = Request.UrlReferrer;