index.aspx 352 B

12345678910111213141516171819
  1. <%@ Page language="c#" %>
  2. <html>
  3. <script runat="server">
  4. void Page_Load ()
  5. {
  6. try {
  7. for (int i = 1; i <= 40; i++) {
  8. System.Threading.Thread.Sleep (1000);
  9. Console.WriteLine (i);
  10. }
  11. } catch (System.Threading.ThreadAbortException) {
  12. Console.WriteLine ("Aborted! :-)");
  13. }
  14. }
  15. </script>
  16. <body>
  17. This should not be seen.
  18. </body>
  19. </html>