Content
Introduction
Release Notes
Features
FAQs
Requirements
Installation
Change Log
Future Plans
Knowledge Base
Reference Manual
Conventions
Scriptlets
Data Types
Constants
Variables
Procedures
Operators
Statements
Objects
Array
Cookie
Date
Enumeration
File
FileDescriptor
Hashtable
Internet
IO
JDBC
Number
Object
Properties
Random
Request
Response
SqlTypes
Stack
StreamTokenizer
String
StringBuffer
StringTokenizer
System
Vector
Wrappers
Servlet
Server Side
Preprocessor
Executable
Samples
Sales
Legal
Feedback
|
Sets whether any output is raw on the specified response object.
Syntax
setIsRaw( response , boolean )
response.setIsRaw( boolean )
Parameters
response
|
the response object to use.
|
boolean
|
whether output should be raw.
true if output should be raw.
false if output should not be raw.
|
Returns
Notes
This method is only accessible by ss.
Normally output is not raw. This value can only be changed before any output. An exception will occur if an attempt is made to change the value after output is made. If raw output is enabled the program is responsible for output of all headers.
Example
Response( ).setIsRaw( false )
|
|