IIS7 and Authentication problems

后端 未结 1 532
别那么骄傲
别那么骄傲 2020-12-19 11:45

i\'ve got a stock standard ASP.NET web site, deployed to our development machine (internal machine in our server room).

Now, this dev site can be accessed by both IN

相关标签:
1条回答
  • 2020-12-19 12:09

    IIS7 integrated mode does not support the two phase authentication that IIS6 does. Basically, IIS6 would perform its authentication (windows), followed by asp.net performing its authentication (forms). But with IIS7, everything is equal in integrated mode, so you can only have one or the other authentication methods.

    You can either convert the app pool to use classic mode or follow this workaround to get it working with Integrated mode.

    0 讨论(0)
提交回复
热议问题