I am using windows authentication in my ASP.NET MVC 3 website. Apart from this, I am not using any authentication module or session or caching module, So I would like to disable these modules.
I have read several article on this:
http://www.codeproject.com/Articles/23306/10-ASP-NET-Performance-and-Scalability-Secrets
Something faster than HttpHandlers?
Is this the right way to disable modules which I am not using:
<httpModules>
<remove name="PassportAuthentication" />
<remove name="Session" />
</httpModules>
What's the correct way to disable unused modules?