Mega Code Archive

 
Categories / ASP.Net Tutorial / Configuration
 

Modifying the web config file to add usernamepassword values

<system.web>    <authentication mode="Forms">       <forms name="Wrox" loginUrl="Login.aspx" path="/">          <credentials passwordFormat="Clear">             <user name="userName" password="Bubbles" />          </credentials>       </forms>    </authentication>        <authorization>       <deny users="?" />    </authorization> </system.web>