Servertec isRaw( )
M E N U

Content
Introduction
Release Notes
Requirements
Installation
Change Log
Future Plans
Knowledge Base
Referance Manual
Conventions
Scriptlets
Data Types
Constants
Variables
Procedures
Operators
Statements
Objects
Array
Cookie
Date
Error
File
FileDescriptor
Hashtable
Internet
IO
JDBC
Number
Object
Properties
Random
Request
Response
SqlTypes
Stack
StreamTokenizer
String
StringBuffer
StringTokenizer
System
Vector

Wrappers
Server Side
Preprocessor
Executable
Make
Samples
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.

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.

Returns

    nothing

Notes

This method is only accessible by ss.

Example

    Response( ).isRaw( false )
top of page
Built with iScript Copyright © 1997-1998 Servertec. All rights reserved.
Last Modified: Wed Apr 15 00:16:38 EDT 1998