|
ASP
Response
More detial or script code example
Response.redirect "http://_____" , forward url
地址转向 Response.redirect Description: forwarding to an URL site
地址转向 
ASP
Response
More detial or script code example
Response.AddHeader
Description: Syntax:
Response.AddHeader name, value
Response.AddHeader “REFRESH”, ”60;URL=__________”
Response.Status = “302 Object Moved”
Response.Addheader “Location”, “http://_________"
Response.Status= “401 Unauthorized”
Response.Addheader “WWW-Authenticate”, “BASIC”

ASP
Response
More detial or script code example
Response.ContentType = " "
Description: Response.ContentType = " "

ASP
Response
More detial or script code example
Response.charset = " "
Description: Response.charset = " "
Charset 属性将字符集名称
附加到 Response 对象中 content-type 标题后,
用来设服务器响应给客户端文件字符的编码。

ASP
Response
More detial or script code example
response.expires = 0
Description: response.expires = 0

|