在asp.net中使用visual studio進行網絡處理。 我試圖把一個自定義錯誤頁我用這個代碼 -asp.net中的自定義錯誤頁面無盡循環
<customErrors mode="RemoteOnly" defaultRedirect="~/ErrorPages/errorPage.aspx" >
<error statusCode="404" redirect="~/ErrorPages/NotFound.aspx" />
</customErrors>
和我創建的錯誤頁面。 我也是在Global.asax頁面上得到這個代碼 -
Sub Application_Error(ByVal sender As Object, ByVal e As EventArgs)
Dim mailClass As New MultiUseFunctions()
Dim objErr As SystemException = Server.GetLastError().GetBaseException()
Dim errorContent As String = the error msg code
mailClass.sendMail(errorContent, "User Error Info", "the mail address", "Nothing")
End Sub
我得到我的郵件erorr味精,但 - >
現在,這是我的問題: 當我打一個錯誤例如錯誤的URL類型,並重定向到notFound錯誤頁面,我陷入了可能在無限循環?不管我點擊網站,而是移動到其他頁面,它只是停留在該頁面上。 任何想法可能會導致這樣的事情?
提前致謝!
由於您遇到'NotFound.aspx'頁面,請檢查頁面包含的鏈接是否已損壞。 – 2014-11-04 16:23:10