Asp Object 之:ContentType - 中国WEB开发者网络 (http://www.webasp.net) -- 技术教程 (http://www.webasp.net/article/) --- Asp Object 之:ContentType (http://www.webasp.net/article/27/26939.htm) |
| -- 作者:未知 -- 发布日期: 2005-10-20 |
ContentTypeContentType 属性指定响应的 HTTP 内容类型。如果未指定 ContentType,默认为 text/HTML。 语法Response.ContentType [= ContentType ] 参数
示例下面的示例将内容类型设置为 Channel Definition Format(CDF)。 <% Response.ContentType = "application/x-cdf" %> 下面的示例将 ContentType 属性设置为其他的常见值。 <% Response.ContentType = "text/HTML" %> <% Response.ContentType = "image/GIF" %> <% Response.ContentType = "image/JPEG" %> 应用于Response 对象 |
| webasp.net |