How to Protect Only Certain Parts of a Web Site using the Federated Authentication Module
I want to Integrate Windows Identity Framework(WIF) For SSO, Federated Authentication Module of WIF is triggering on every Page of Website sends user to Signin Pgae i want on Some Page of My 开发者_Go百科Website it did not apply Authentication.
You can add the bellow to the web.config and it will allow all users to access the location.
<location path="Default.aspx">
<system.web>
<authorization>
<allow users="*" />
</authorization>
</system.web>
</location>
In the example above I allow all users to access Default.aspx page.
Hope this helps.
精彩评论