Used to indicate the character set of the content type of the specified response object.
Syntax
charset( response )
response.charset( )
Parameters
response
|
the response object to use.
|
Returns
string
|
the name of the character set.
|
Notes
This method is only accessible by ss and by iScript Servlet.
Example
if isNull( Response( ).charset( ) ) then
break
end
Syntax
charset( response , string )
response.charset( string )
Parameters
response
|
the response object to use.
|
string
|
the name of the character set.
|
Returns
Notes
This method is only accessible by ss and by iScript Servlet.
Example
Response.charset( cset )
|