Image
Path
Allows you to specify the default path where images are located. This
setting is used with the Dynamic 4GL DISPLAY
statement.
For example:
# Images path (default : "/images")
imagePath="/Cli-HTML/images"
If you specify the following:
imagePath="/ Cli-HTML/i mages" |
and your Dynamic 4GL program contains
the following code:
DISPLAY
"mypicture.gif" TO myField
|
Then the resulting HTML code will
appear as follows:
<IMG
SRC="/ Cli-HTML/images/mypicture.gif"> |
The web server will then look for
the image in <document_root>/ Cli-HTML/images/mypicture.gif .
Expected type: string.
Note
:
The Web deployment software only
supports the .gif image file format, while your Web browser may support
other image file formats. |
|