我在我的 ASP.NET MVC 3 网站中使用 Windows 身份验证。除此之外,我没有使用任何身份验证模块或会话或缓存模块,所以我想禁用这些模块。
我已经阅读了几篇关于此的文章:
http://www.codeproject.com/Articles/23306/10-ASP-NET-Performance-and-Scalability-Secrets
这是禁用我不使用的模块的正确方法:
<httpModules>
<remove name="PassportAuthentication" />
<remove name="Session" />
</httpModules>
禁用未使用模块的正确方法是什么?