Servertec and
Content
Introduction
Release Notes
Features
FAQs
Requirements
Installation
Change Log
Future Plans
Knowledge Base
Reference Manual
Conventions
Scriptlets
Data Types
Constants
Variables
Procedures
Operators
Object [.]
Expression [( )]
Unary Not [!]
Unary Plus [+]
Unary Minus [-]
Multiplication [*]
Division [/]
Addition [+]
Subtraction [-]
Concatenation [+]
Less Than [<]
Greater Than [>]
Less Than
Or Equal To [<=]

Greater Than
Or Equal To [>=]

Equal To [=]
Not Equal To [<>]
Logical And [and]
Logical Or [or]
Assignment [=]
Sequence [,]

Statements
Objects
Wrappers
Servlet
Server Pages
Preprocessor
Executable
Samples
Legal
Contact Us

 

Compares expressions and returns True if both expression are True.

Syntax

    expression and expression

Notes

    Expressions
    Result
    True and True True
    True and False False
    False and True False
    False and False False

Example

    if grade > 8 and grade < 13 then
        school = "High School"
    end
    
 top of page
Copyright © 1998-2005 Servertec. All rights reserved.
Privacy Statement.
Last Modified: Sun Sep 04 14:56:08 EDT 2005