当前位置: 首页 > 网络学院 > 服务端脚本教程 > ASP > ASP AddHeader 方法
The AddHeader method adds a new HTTP header and a value to the HTTP response.
AddHeader指令是向HTTP响应中添加一个新的HTTP标题以及一个值。
Note: Once a header has been added, it cannot be removed.
注意:当标题一旦被填加进去,他将无法删除。
Note: In IIS 4.0 you have to call this method before any output is sent to the browser. In IIS 5.0 you can call the AddHeader method at any point in the script, as long as it precedes any calls to the response.Flush method.
注意:在IIS4.0版本中,你必须在结果发送至浏览器之前使用这个指令;在IIS5.0中,只要在Response.Flush指令之前的任何脚本中,都可以使用AddHeader指令。
response.AddHeader name,value |
Parameter 参数 | Description 描述 |
---|---|
name | Required. The name of the new header variable (cannot contain underscores) 必用参数. 设定标题变量名称(不能含有下划线“_”) |
value | Required. The initial value of the new header variable 必用参数. 设定标题变量的初始值 |
<%Response.AddHeader "WARNING","Error message text"%> |