Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2014
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.53 KB | None | 0 0
  1. try
  2. {
  3. //Do some stuff
  4. }
  5. catch (WebException webex)
  6. {
  7. if (webex.Response != null)
  8. {
  9. using (var errorResponse = (HttpWebResponse)webex.Response)
  10. {
  11. using (var reader = new StreamReader(errorResponse.GetResponseStream()))
  12. {
  13. reponse = reader.ReadToEnd();
  14. }
  15. }
  16. }
  17. }
  18.  
  19. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  20. <html xmlns="http://www.w3.org/1999/xhtml">
  21. <head>
  22. <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>
  23. <title>404 - File or directory not found.</title>
  24. <style type="text/css">
  25. <!--
  26. body{margin:0;font-size:.7em;font-family:Verdana, Arial, Helvetica, sans-serif;background:#EEEEEE;}
  27. fieldset{padding:0 15px 10px 15px;}
  28. h1{font-size:2.4em;margin:0;color:#FFF;}
  29. h2{font-size:1.7em;margin:0;color:#CC0000;}
  30. h3{font-size:1.2em;margin:10px 0 0 0;color:#000000;}
  31. #header{width:96%;margin:0 0 0 0;padding:6px 2% 6px 2%;font-family:"trebuchet MS", Verdana, sans-serif;color:#FFF;
  32. background-color:#555555;}
  33. #content{margin:0 0 0 2%;position:relative;}
  34. .content-container{background:#FFF;width:96%;margin-top:8px;padding:10px;position:relative;}
  35. -->
  36. </style>
  37. </head>
  38. <body>
  39. <div id="header"><h1>Server Error</h1></div>
  40. <div id="content">
  41. <div class="content-container"><fieldset>
  42. <h2>404 - File or directory not found.</h2>
  43. <h3>The resource you are looking for might have been removed, had its name changed, or is temporarily unavailable.</h3>
  44. </fieldset></div>
  45. </div>
  46. </body>
  47. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement