This hotfix makes a new application setting available in ASP.NET 2.0. The new application setting is 'aspnet:AllowAnonymousImpersonation'. You can enable this setting by adding the following section to the Web.config file:

    <appSettings>        

<add key="aspnet:AllowAnonymousImpersonation" value="true" />    

</appSettings>

To enable this setting, you must have IIS 7 or IIS 7.5 running in Integrated mode. When this setting is enabled, the application runs under the security context of the IUSR identity. Additionally, creating a Forms-based Authentication Web Application will enable the setting and set it to true.

相关文章:

  • 2022-12-23
  • 2021-07-07
  • 2021-12-13
  • 2021-11-20
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-09-15
  • 2022-12-23
  • 2022-03-10
  • 2021-06-22
  • 2022-12-23
相关资源
相似解决方案