Content
Introduction
Release Notes
Features
FAQs
Requirements
Installation
Change Log
Future Plans
Knowledge Base
Documentation
Conventions
Users
Reference
iServer API
Servlet API
CGI
SSI
#config
#echo
#exec
#flastmod
#fsize
#include
Servlets
Logs
Samples
Sales
Legal
Feedback
|
Used to insert the output of an executable program.
Syntax
<!-- #exec type = "command" -->
Parameters
type
|
CGI
|
Execute a Command Gateway Interface (CGI) command.
The command is a virtual path to the executable in URL encoding where:
Spaces are replaced by +.
Parameters appear after the command, after a ?.
Parameters are separated by &.
Parameters use the following syntax: parameter=value
|
CMD
|
Runs an executable or shell command.
The command is a physical path to the executable.
|
|
command
|
The command to execute.
|
Examples
<!-- #exec CMD = "c:\command.com /c dir" -->
|
|