Hello,
I am developing an ASP.Net application that is to be primarily accessed by internal users (using Windows authentication) but has a few pages for anonymous external users to access, without any authentication.
How would it be done? For example, should I do something like this in web.config:
<location path="AnyoneCanAccess.aspx">
<system.web>
<authorization>
<allow users="*"/>
</authorization>
</system.web>
</location>
But will this run into problems, because the external user is not a Windows user?
Go to the complete details ...