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;