Software Development Network>> Visual C#>> reg. AJAX xml http request
hi, I'm using XmlHttp request from java script to call my aspx page and it return back to javascript. Here I got exception called "Thread was being aborted".
can any one know how to solve it
thanks murali
Hi guys thank you for your kind response.,
I got a solution. My actual problem is in Aspx only, My previous coding isAspx / C# :Response.clear();Response.write(Return_Data);Response.End();
But now I just change it into like this :Aspx / C# :Response.clear();Response.write(Return_Data);Response.flush();Response.close();
Exception raise in Response.End now i change it into Response.flush() and Response.close();
thanks
reg. AJAX xml http request
niceguysfinishlast
Hi guys thank you for your kind response.,
I got a solution. My actual problem is in Aspx only, My previous coding is
Aspx / C# :
Response.clear();
Response.write(Return_Data);
Response.End();
But now I just change it into like this :
Aspx / C# :
Response.clear();
Response.write(Return_Data);
Response.flush();
Response.close();
Exception raise in Response.End now i change it into Response.flush() and Response.close();
thanks