getTarget.aspx 531 B

1234567891011121314151617181920
  1. <%@ Page Language="C#" %>
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <script runat="server">
  4. protected override void OnInit (EventArgs e) {
  5. base.OnInit (e);
  6. System.Threading.Thread.Sleep (30000);
  7. }
  8. </script>
  9. <html xmlns="http://www.w3.org/1999/xhtml" >
  10. <head>
  11. <title>Hello Page</title>
  12. </head>
  13. <body>
  14. <p>
  15. ...hello there. Congratulations, you got here via a GET Web Request!
  16. </p>
  17. </body>
  18. </html>