0
I written a post regarding forms based authentication earlier, in one of my recent project i excluded some pages from forms based authentication so everyone can access that pages. for doing this you need to include seperate sections in web.config file for the pages to be excluded.
Example:
location path="add_new_articles.aspx" allowOverride="true" >
</system.web >
Example:
location path="add_new_articles.aspx" allowOverride="true" >
<system.web >
<authorization >
<deny users ="?" />
</
authorization ></system.web >
</location >
Post a Comment