void Application_Error(object sender, EventArgs e)
{
Exception objException = Server.GetLastError().GetBaseException();
Server.Transfer("~/ErrorPage/Error_Page.aspx?objException="
+ objException,true);
}
//Error page.aspx page load
protected void Page_Load(object sender, EventArgs e)
{
object objException = Request.QueryString["objException"];
//Write exception in log file.
WriteApplicationErrorLog(objException.Message, objException.StackTrace);
}
I am getting an exception object in Global.asax on application level. I need to pass this exception object to a page errorpage.aspx, and write it to a log file.
I am using the code above, but getting the exception message, and not the object.

Application_Errorand then redirect to the error page? – Hans Kesting Jan 14 at 8:56