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