Scripo
2006-07-10 06:02:44 UTC
my coding is..
try
{
some blah coding
}
catch
{
LogFile Err = new LogFile();
Err.ErrorLog(Server.MapPath("../Logs/ErrorLog"),ex.Message);
Response.Redirect("inc/ErrorPage.aspx");
}
this Log file is my class where i have created a log file and appending the value...
and also i am redirecting if any error occurs to errorpage.aspx..
but my problem here neither i aget an error nor i move to that error page... but when i check my log file i find that message""thread was being aborted""
Pls some body help me out of this....