开发者

Adding a Http-Header in a HttpModule and read it out from a Page

开发者 https://www.devze.com 2023-01-19 09:14 出处:网络
I\'ve tried to write my own HttpModule (IHttpModule) that adds a Header like that: public class MyModule: IHttpModule

I've tried to write my own HttpModule (IHttpModule) that adds a Header like that:

public class MyModule: IHttpModule
{
    public void Init(HttpApplication c)
    {

        c.BeginRequest += delegate{c.Response.AddHeader("MyHeader", "MyValue"开发者_如何学JAVA);};
    }

    public void Dispose(){}
}

and tried to read in a aspx page like that:

var x = Request.ServerVariables["MyHeader"];

but it didn't work. Any idea why?


You're adding something to the headers that will be sent from the server to the client and trying to read it from the headers already received by the server from the client. These are two completely different collections.

If you are using this to communicate between the module and the page, you may find it preferable to add something to the HttpContext.Items, this allows for all sorts of objects to be passed, and doesn't pollute the headers with stuff that aren't relevant there, nor require sessions, so it is a good way to communicate between code operating on the same request.


add it like this , use event "EndRequest"

void application_EndRequest(object sender, EventArgs e)
{
            HttpResponse response = HttpContext.Current.Response;
            response.AddHeader("Author", "Sam Lin");
}
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号