document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <html>
  2. <head>
  3. <title>My First ASP.NET Page</title>
  4. <script runat="server" language="VB">
  5. Sub Page_Load(sender As Object, e As EventArgs)
  6. timeLabel.Text = DateTime.Now.ToString()
  7. End Sub
  8. </script>
  9. </head>
  10. <body>
  11. <p>Hello World!</p>
  12. <p>The time is now:
  13. <asp:Label runat="server" id="timeLabel" /></p>
  14. </body>
  15. </html>
');