Я знаю, что это очень просто, но вы пробовали это?Это происходит в файле Web.config.
<customErrors mode="On" defaultRedirect="Error.aspx">
</customErrors>
Кроме того, я иногда помещаю следующий код в событие Application_Error в глобальном файле для регистрации исключения:
' Fires when an error occurs
' Code that runs when an unhandled error occurs
Dim ErrorDescription As String = Server.GetLastError.ToString
' Log the Error to Event Log
'Creation of event log if it does not exist
Dim EventLogName As String
EventLogName = ConfigurationManager.AppSettings("ApplicationLog").ToString()
If (Not EventLog.SourceExists(EventLogName)) Then
EventLog.CreateEventSource(EventLogName, EventLogName)
End If
' Inserting into event log
Dim Log As New EventLog()
Log.Source = EventLogName
Log.WriteEntry(ErrorDescription, EventLogEntryType.Error)