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="C#">
  5. protected void Page_Load(object sender, EventArgs e)
  6. {
  7. timeLabel.Text = DateTime.Now.ToString();
  8. }
  9. </script>
  10. </head>
  11. <body>
  12. <p>Hello there!</p>
  13. <p>The time is now:
  14. <asp:Label runat="server" id="timeLabel" /></p>
  15. </body>
  16. </html>
');