- Homepage
-
Blog roll
Private folders is an IWS feature that allows to restrict access to certain folders in a web site. This feature utilizes the following ASP.NET technologies - authentication, membership, role management and authorization.
The following steps are required to set up a web site using private folders:
User credentials and roles are defined in the users.xml file using the following format:
<?xml version="1.0" standalone="yes"?>
<PrivateFoldersDataSet xmlns="http://atozed.com/PrivateFoldersDataSet.xsd">
<User>
<Username>username</Username>
<Password>password</Password>
<Roles>role1,role2</Roles>
</User>
</PrivateFoldersDataSet>
A custom login page will be used if placed in the root folder and named login.aspx. Custom login pages need to use the asp:Login control.
Private folders future requires a lot of changes in the web.config file, so IWS takes case of that by automatically making needed changes in the default or user supplied web.config file.