Servertec   Scriptlets
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
Wrappers
Servlet
Server Side
Preprocessor
Executable
Samples
Sales
Legal
Feedback

 

A collection of statements.

Syntax

    { statement }...

Notes

    The above syntax applies only to iScript Executable.

Example

    println( "Hello World!" )

Syntax

    <% { statement } %>
    <%
    { statement }...
    %>

Notes

    The syntax above applies only to Server Side iScript and iScript Preprocessor.

Example

    <html>
        <head>
            <title>Welcome Page</title>
        </head>
        <body>
            <center><h1>Welcome</h1></center>
            <hr>
    
            Hello <%=name%>
        </body>
    </html>
    
 top of page
 Built with iScript Copyright © 1997-1999 Servertec. All rights reserved.
Last Modified: Tue Jan 26 22:19:03 EST 1999