如何向Request.ServerVariables.Get(“ALL_HTTP”)添加其他参数

时间:2014-04-07 09:28:07

标签: c# asp.net-mvc

我必须在http header中添加一些额外的参数。假设我使用它必须包含一些额外的参数,并且应该在任何地方都可见。如果有人使用我的http标题,那么所有内容都应该与我的附加参数一起显示。 Request.ServerVariables.Get("ALL_HTTP");

1 个答案:

答案 0 :(得分:1)

您可以在web.config中添加自定义标头。 例如:

<configuration>
        <system.webServer>
            <httpProtocol>
                <customHeaders>
                    <add name="CustomHeader1" value="Hi" />
                </customHeaders>
            </httpProtocol>
        </system.webServer>
</configuration>