该AddHeader方法增加了一个新的HTTP标头和价值的HTTP响应。
注意:一旦ASP AddHeader,它不能被删除。
注:在IIS 4.0中你必须调用此方法之前,任何被输出到浏览器。在IIS 5.0中,您可以致电AddHeader方法在任何一点的脚本,只要它之前的任何要求Response.Flush方法。
语法
<pre>response.AddHeader name,value</pre> <pre><table class="ex" cellspacing="0" cellpadding="3" width="100%" border="1"><tbody><tr><th valign="top" align="left" width="20%">Parameter</th><th valign="top" align="left" width="80%">Description</th></tr><tr><td valign="top">name</td><td valign="top">Required. The name of the new header variable (cannot contain underscores)</td></tr><tr><td valign="top">value</td><td valign="top">Required. The initial value of the new header variable</td></tr></tbody></table></pre> <pre>看个实例.</pre> <pre><pre><%Response.AddHeader "WARNING","Error message text"%></pre> </pre> <pre>www.111cn.net</pre>