Default.aspx 548 B

12345678910111213141516171819202122
  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. </script>
  5. <html xmlns="http://www.w3.org/1999/xhtml" >
  6. <head runat="server">
  7. <title>Sample Page That Requires Authentication</title>
  8. </head>
  9. <body>
  10. <form id="form1" runat="server">
  11. <div>
  12. If you made it to this page, then you have a forms
  13. authentication cookie in the browser.
  14. </div>
  15. </form>
  16. </body>
  17. </html>