ASP. Net custom rewrite Http Server Header

Source: Internet
Author: User

In. Net, we may need to modify our header packets for security or other reasons.

In the following method, we use the HTTP Module to remove or modify it programmatically.

First, we define a class CustomServerHeaderModule that inherits from IHttpModule and creates an event handler for the PreSendRequestHeaders event.

The Code is as follows:

 

Using System; using System. collections. generic; using System. linq; using System. web; namespace Cloud. apiWeb. models {public class CustomServerHeaderModule: IHttpModule {public void Init (HttpApplication context) {context. preSendRequestHeaders + = OnPreSendRequestHeaders;} public void Dispose () {} void OnPreSendRequestHeaders (object sender, EventArgs e) {// remove the Server header // HttpContext. current. response. headers. remove ("Server"); // reset the Server header HttpContext. current. response. headers. set ("Server", "Windows Server 2012 ");}}}

 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.