Form Design (required)

This is the HTML used to display your form. The use of "&" within an encoded value is not permitted. (E.g.,  )

Control Substitution

This allows you to specify and place a control at a specific location on the page.

[(CONTROLNAME)] = the name of the Controls specified in the "<ControlName>" node of the control you want to display.

Variable Substitution

REPLACEMENTVARIABLENAME = The name of the Replacement Variable that is captured from a post into the form. For example, if you want to use or show an ID in the form design that is passed into the page and you have specified it as "%CWID%" in your replacement variables, you can use "%CWID%" within the Design HTML. Requires the Replacement Variables property.

Design Example

<table cellpadding="0" cellspacing="0" style="width: 500px">

<tr>

<td class="ms-formlabel" style="width: 116px"><b>Priority Name:</b></td>

<td class="ms-formbody">[(PriorityName)]<![CDATA[&nbsp;]]></td>

</tr>

<tr>

<td class="ms-formlabel" style="width: 116px"><![CDATA[&nbsp;]]></td>

<td class="ms-formbody">[(SUBMIT)]<![CDATA[&nbsp;]]></td>

</tr>

</table>

Back to Top