Used to indicate the content length of the specified response object.
Syntax
contentLength( response )
response.contentLength( )
Parameters
response
|
the response object to use.
|
Returns
Notes
This method is only accessible by ss and by iScript Servlet.
Example
if Response( ).contentLength( ) = 0 then
break
end
Syntax
contentLength( response , long )
response.contentLength( long )
Parameters
response
|
the response object to use.
|
long
|
the content length.
|
Returns
Notes
This method is only accessible by ss and by iScript Servlet.
Example
Response.contentLength( clength )
|