Servertec   isRaw( )
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

 

Used to indicate that any output is raw on the specified response object.

Syntax

    isRaw( response )
    response.isRaw( )

Parameters

    response the response object to use.

Returns

    boolean whether output is raw.
    true if output is raw.
    false if output is not raw.

Notes

    This method is only accessible by ss.

Example

    if Response( ).isRaw( ) then
        break
    end
    

Syntax

    isRaw( response , boolean )
    response.isRaw( 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

    nothing

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( ).isRaw( false )
    
 top of page
 Built with iScript Copyright © 1997-1999 Servertec. All rights reserved.
Last Modified: Tue Jan 26 22:19:03 EST 1999