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

 


A collection of statements.

Syntax

        { statement }...

Notes

Applies to iScript Executable.

Example

    println("Hello World!")

Syntax

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

Notes

Applies 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-1998 Servertec. All rights reserved.
Last Modified: Wed Apr 15 00:16:38 EDT 1998