document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <configuration>
  2.     ...
  3.     <system.web>
  4.         ...
  5.         <authentication mode="Forms">
  6.             <forms loginUrl="Login.aspx"
  7.               defaultUrl="Default.aspx" />
  8.         </authentication>
  9.         ...
  10.         <authorization>
  11.             <deny users="?"/>
  12.             <allow users="*"/>
  13.         </authorization>
  14.         ...
  15.     </system.web>
  16.     ...
  17. </configuration>
');