The ContentType property specifies the HTTP content type for the response. If no ContentType is specifed, the default is text/HTML.
Response.ContentType [= ContentType ]
ContentType
A string describing the content type. This string is usually formatted, type/subtype where type is the general content category and subtype is the specific content type. For a full list of supported content types, see your Web browser documentation or the current HTTP specification.
The following example sets the content type to non-HTML encoded text. This means that the browser will not interpret any HTML tags in the file; instead, they will be displayed on the screen.
<% Response.ContentType = "text/plain" %>
The following examples set the ContentType property to other common values.
<% Response.ContentType = "text/HTML" %> <% Response.ContentType = "image/GIF" %> <% Response.ContentType = "image/JPEG" %>
See also:
© Microsoft Corporation. All rights reserved.
file: /Techref/language/asp/OBJ/introbj_17.htm, 2KB, , updated: 2000/8/14 11:49, local time: 2024/11/5 13:07,
3.129.45.150:LOG IN ©2024 PLEASE DON'T RIP! THIS SITE CLOSES OCT 28, 2024 SO LONG AND THANKS FOR ALL THE FISH!
|
©2024 These pages are served without commercial sponsorship. (No popup ads, etc...).Bandwidth abuse increases hosting cost forcing sponsorship or shutdown. This server aggressively defends against automated copying for any reason including offline viewing, duplication, etc... Please respect this requirement and DO NOT RIP THIS SITE. Questions? <A HREF="http://linistepper.com/Techref/language/asp/OBJ/introbj_17.htm"> ContentType</A> |
Did you find what you needed? |