In this short tutorial, I will advise tips to remove IIS/ASP.NET Response Headers. OK, here we go: #1. Remove All Custom Headers Header Name: X-Powered-By Add: in the <system.webServer> section. Header Name: Server Implement an httpModule that strips this header out by calling Response.Headers.Remove(“Server”) from the PreSendRequestHeaders event. Another resource for this: Cloaking your ASP.NET MVC Web Application on…