I am getting the above error
Here is my Web.config
<configuration>
<system.web>
<authentication mode="Forms">
<forms loginUrl="login.aspx" protection="All" timeout="30">
<credentials passwordFormat="Clear">
<user name="ftpguest" password="LA910"/>
</credentials>
</forms>
</authentication>
<!--
<authorization>
<allow users="*" />
</authorization>-->
</system.web>
<location path="Protected">
<system.web>
<authorization>
<allow users="ftpguest" />
<deny users="*" />
</authorization>
</system.web>
</location>
</configuration>
...
Go to the complete details ...