A collection of statements.
Syntax
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>
|