Default.aspx 527 B

1234567891011121314151617181920
  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 authentication cookie in the browser.
  13. </div>
  14. </form>
  15. </body>
  16. </html>