Open In App

ASP Charset Property

The ASP Charset Property is used to append the name of the character set to the content-type header in the Response object.

For example- ISO-8859-13. The default character set is ISO-LATIN-1. 



Syntax:

response.Charset(charsetname)

Parameter Values: It contains the value i.e charsetname which specifies the name of the character set for the asp page.  



Examples: 

content-type:text/html
<% response.Charset=ISO-8859-13 >
content-type:text/html; Charset=ISO-8859-13
Article Tags :