lupis 0 Newbie Poster

Hi,

I am new to asp.net and I have subfolder in my rootfolder with files that needs to accessed by username and login from a loginpage. I have currently one default.aspx that I access this way in the root folder. This is a extract from my current webconfig file in the root folder:

<authentication mode="Forms">
      <forms name="appNameAuth" path="/" loginUrl="login.aspx" protection="All" timeout="30">
        <credentials passwordFormat="Clear">
          <user name="Member" password="xxx"/>
          
        </credentials>
      </forms>
    </authentication>
    <authorization>

      <deny users="?"/>

    </authorization>

What I want to do is to move that default.aspx page and have other pages in a subfolder thats protected with the same credentials as in my current webconfig file in my root folder. The name of that subfolder is members. I have also created a seperate webconfig file in that subfolder.
My question is how will the code in the seperate webconfig files look like.

Thanks
Sohail