SimpleExample1CS.aspx 757 B

12345678910111213141516171819202122232425262728293031
  1. <%@ Page Language="C#" %>
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  3. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  4. <script runat="server">
  5. </script>
  6. <html xmlns="http://www.w3.org/1999/xhtml" >
  7. <head runat="server">
  8. <title>Handling the pageLoaded Event</title>
  9. <style type="text/css">
  10. body {
  11. font-family: Tahoma;
  12. }
  13. </style>
  14. </head>
  15. <body>
  16. <form id="form1" runat="server">
  17. <div>
  18. <asp:ScriptManager ID="ScriptManager1" runat="server" />
  19. <script type="text/javascript" language="Javascript">
  20. </script>
  21. The page so far has only a ScriptManager control defined and
  22. an empty script block.
  23. </div>
  24. </form>
  25. </body>
  26. </html>