It's used to add additional HTTP Headers to your request-- read the previous link if you're unfamiliar wtih what an HTTP Header is used for.
Most of the time, you'll end up setting headers indirectly, using other ASP.NET objects or methods like Response.Cookies or Response.Redirect. However, there are advanced, relatively unusual scenarios where it's sometimes necessary to call Response.AddHeader() directly in your code.
For example, to cause an HTTP 301 (permanent) redirect in ASP.NET 3.5, you'd need to use Response.AddHeader, using code like this:
It's used to add additional HTTP Headers to your request-- read the previous link if you're unfamiliar wtih what an HTTP Header is used for.
Most of the time, you'll end up setting headers indirectly, using other ASP.NET objects or methods like
Response.Cookies
orResponse.Redirect
. However, there are advanced, relatively unusual scenarios where it's sometimes necessary to callResponse.AddHeader()
directly in your code.For example, to cause an HTTP 301 (permanent) redirect in ASP.NET 3.5, you'd need to use
Response.AddHeader
, using code like this: