Getting Variables to Display in Webspeed

rip73

New Member
I have a variable is that is calculated within the Webspeed portion of the program and then I'm attempting to display it on the form.

What is the syntax for getting that variable to display on a webpage?

Thanks,

Webspeed Newbie
 
Just put it, encloed in backticks, at the place in the HTML-code.

Example:
<% ASSIGN iSum = iNum1 + iNum2. %>
<td>`iSum`</td>

Regards
Robert
 
Back
Top