4 out of 7 rated this helpful - Rate this topic

AddUser Directory Configuration File (Web.config)

.NET Framework 1.1

You should set up the Web.config file to have the following entries and place it in the AddUser directory (containing AddUser.aspx). These settings allow anyone to view the AddUser.aspx page.

<configuration>
    <system.web>
        <authorization>
            <allow users="*"/> 
        </authorization>
    </system.web >
</configuration>

See Also

ASP.NET Web Application Security | Forms Authentication Using an XML Users File

Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.