contenttype
contenttype 属性指定响应的 http 内容类型。如果未指定 contenttype,默认为 text/html。
语法
response.contenttype [= contenttype ]
参数
- contenttype
- 描述内容类型的字符串。该字符串通常被格式化为类型/子类型,其中类型是常规内容范畴而子类为特定内容类型。有关支持内容类型的完整列表,请参阅 web 浏览器文档或当前的 http 规格说明。
示例
下面的示例将内容类型设置为 channel definition format(cdf)。
<% response.contenttype = "application/x-cdf" %>
下面的示例将 contenttype 属性设置为其他的常见值。
<% response.contenttype = "text/html" %> <% response.contenttype = "image/gif" %> <% response.contenttype = "image/jpeg" %>
应用于
response 对象