Returns the content type of the specified response object.
Syntax
getContentType( response )
response.getContentType( )
Parameters
response
|
the response object to use.
|
Returns
Notes
This method is only accessible by ss and by iScript Servlet.
Example
if isNull( Response( ).getContentType( ) ) then
Response( ).setContentType( "text/plain" )
end
|