Guest User

Untitled

a guest
May 11th, 2012
31
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. How to use HttpWebRequest in ajax request without http abort?
  2. try
  3. {
  4. HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url);
  5. response = request.GetResponse();
  6. stream = response.GetResponseStream();
  7. }
  8. catch (Exception)
  9. {
  10. throw;
  11. }
Advertisement
Add Comment
Please, Sign In to add comment