Allow users into a subset of pages

In asp.net, when using forms authentication, you will often want to allow a user to access a subset of pages (like maybe a contact or about us page)

This snippit of code will allow that.

Related Articles

... and you 'll find more on the NET Development Menu

<location path="mySpecialPage.asmx">
    <system.web>
      <authorization>
        <allow users="*"/>
      </authorization>
    </system.web>
  </location>

RealWorldCode gives developers practical, real‑world solutions with clean, working code — no fluff, no theory, just answers.
Links
Home
Knowledge Areas
Sitemap
Contact
Et cetera
Privacy Policy
Terms and Conditions
Cookie Preferences