You may write your own error page. Bind datagrid to ErrorLog.GetErrors() and use any columns you need:
List<ErrorLogEntry> entries = new List<ErrorLogEntry>(); ErrorLog.GetDefault(HttpContext.Current).GetErrors(0, 50, entries); string ip = entries[0].Error.ServerVariables["REMOTE_ADDR"]; string referrer = entries[0].Error.ServerVariables["HTTP_REFERER"];
gilly3
source share