Preferred Language:

Listing 23.8 - Web.Config

Listing 23.8 - Web.Config (C#)
Copy

<?xml version="1.0"?>
<configuration>
  <system.web>

    <authentication mode="Forms">
      <forms>
        <credentials passwordFormat="Clear">
          <user name="Bill" password="secret" />
          <user name="Jane" password="secret" />
          <user name="Fred" password="secret" />
        </credentials>
      </forms>
    </authentication>

  </system.web>
</configuration>