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

 


Returns a hashtable object containing any elements sent using the get request method to the specified request object or returns the value of the given identifier using the specified request object.

Syntax

    QueryString( request )
    request.QueryString( )

Parameters

    request    the request object to use.

Returns

    hashtable    the hashtable object containing any form elements sent using the get request method to the specified request object
                        null    if none

Notes

This method is only accessible by ss.

Example

    qs = Request( ).QueryString( )

Syntax

    QueryString( request, name )
    request.QueryString( name )

Parameters

    request    the request object to use.
    name       the name of the form element.

Returns

    value    the value(s) associated with the given from element.
                 string     if only one value.
                 vector    if more than one value.
                 null        if none.

Notes

This method is only accessible by ss.

Example

    println( "name: " + Request( ).QueryString( "name" ) )

Syntax

    QueryString( request, name, index )
    request.QueryString( name, index )

Parameters

    request    the request object to use.
    name       the name of the form element.
    index       the index into the vector object of values.

Returns

    string    the value associated with the given from element.
                 null        if none.

Notes

This method is only accessible by ss.

Example

    println( "value: " + Request( ).QueryString( "list", 1 ) )
top of page
Built with iScript Copyright © 1997-1998 Servertec. All rights reserved.
Last Modified: Wed Apr 15 00:16:38 EDT 1998