DisplayForm Design

This is the HTML used to display your form. The use of "&" within an encoded value is not permitted.  (E.g.,  ) Unlike the Form Design, you will not use the Submit control within this HTML.

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. This 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>

</table>

 

Back to Top