Form designer: Link tool

A link tool is available in WorkflowGen as of version 5.7.2. If you are using a previous version of WorkflowGen, you can create custom tools and use field settings and custom attributes to set the href value.

To do this, copy the HTML code below into a text file (one for each tool), then copy the .txt files to \wfgen\App_Data\Templates\Forms\En\Default\fields.

LinkASP custom tool

<div class="Field" id="_ROW">
    <div class="FieldCaption"><label class="FieldCaptionLabel" for="_LINK">Link:</label></div>
    <div class="FieldValue"><asp:HyperLink class="FieldValueInput" id="_LINK" runat="server" NavigateUrl="http://www.yourwebsite.com" Target="_blank">Click here</asp:HyperLink></div>
</div>

LinkHTML custom tool

<div class="Field" id="_ROW">
    <div class="FieldCaption"><label class="FieldCaptionLabel" for="_LINK">Link:</label></div>
    <div class="FieldValue"><asp:HyperLink class="FieldValueInput" id="_LINK" runat="server" NavigateUrl="http://www.yourwebsite.com" Target="_blank">Click here</asp:HyperLink></div>
</div>