| |  | Server-Side Include Command Summary SSI Commands | General Format The VM:Webgateway server-side include (SSI) commands you can specify in a parsable HTML file are listed below. | #CONFIG | Controls various aspects of the parsing process for the HTML file. | | #ECHO | Retrieves the value of a CGI or SSI variable that has been set for the HTML file and includes the value in the web browser display of the file. | | #FLASTMOD | Retrieves the date a referenced file was last modified and includes that date in the web browser display of the current HTML file. | | #FSIZE | Retrieves the size of a referenced file and includes that number in the web browser display of the current HTML file. | | #INCLUDE | Retrieves the contents of a referenced file and includes them in the web browser display of the current HTML file. | Note:You cannot use SSI commands in a file that will be reformatted by a filter. <!-- #command attribute1="value1" attribute2="value2" ... --> - command
- Name of the SSI command. The #command variable must be at the beginning of the comment. Command names are case insensitive. You cannot use blanks between the hash sign (#) and the command name.
- attribute
- Attribute of the SSI command. Attribute names are case insensitive. You can use blanks before and after the equal sign. You can delimit attribute values using blanks, or you can enclose the values in single or double quote marks.
|