开发者

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.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜