Using ePublisher Project Variables in Page Templates
In ePublisher you can set up Project Variables that can later be modified using ePublisher Express or AutoMap at generation time. Project variables inject content into your source content during the generation of output. This feature is useful for maintaining commonly changing values such as your product’s version number or copyright date or even the name of the manual.

These variables can then be used within your page template files (i.e. Page.asp
, Body.asp
). For example, if you have a Project Variable called: ProductVersion
, you can access its value by using the projvars:<Variable_Name>
in your page template file.
To access the project variable in your page template, you would use the sprojvars:<Variable_Name>
attribute, similar to the following.
<div wwpage:content="projvars:ProductVersion" wwpage:condition="projvars:ProductVersion">
This text replaced with ProductVersion value.
</div>
Last modified date: 02/23/2025