I have devloped a web application in Asp.net Ajax Extension 1.0.I am facing this problem lot , when page is loading in browser during this if I click on any link button(asp.net control) then we got error page with fallowing error:
System.Threading.ThreadAbortException: Thread was being aborted.
at System.Threading.Thread.AbortInternal()
at System.Threading.Thread.Abort(Object stateInfo)
at System.Web.HttpResponse.End()
at System.Web.HttpResponse.Redirect(String url, Boolean endResponse)
at System.Web.HttpResponse.Redirect(String url)
at framework_GacStore_OrderList.GetGACOrderList()
at framework_GacStore_OrderList.Page_Load(Object sender, EventArgs e)
at System.Threading.Thread.AbortInternal()
at System.Threading.Thread.Abort(Object stateInfo)
at System.Web.HttpResponse.End()
at System.Web.HttpResponse.Redirect(String url, Boolean endResponse)
at System.Web.HttpResponse.Redirect(String url)
at framework_GacStore_OrderList.GetGACOrderList()
at framework_GacStore_OrderList.Page_Load(Object sender, EventArgs e)
How can I handle this problem,please help me.
Thanks
Pawan
Munir ShaikhPosted Sep 14, 2007, 8:02 AM
I think there is small problem, in your code some where you have written Response.End()
which is aborting your application, just uncomment this it will work.
Regards,
>>Munnamax