Security Programming in .Net
These are few tips how to add security programming in .net app on code level. Asp.net Version Disclosure <system.web> <httpRuntime enableVersionHeader=”false” /> </system.web> Set Cookie to HttpOnly <system.web> <httpCookies httpOnlyCookies=”true”/> </system.web> Set Custom Error...