How to disable the red border around required inputs

There are two ways to disable the red border around required inputs. Both require editing the Page_Load event of the form’s .NET code.

Method 1

Set the RequiredFieldsBorderColor property to System.Drawing.Color.Empty.

Example

this.RequiredFieldsBorderColor = System.Drawing.Color.Empty;

Method 2

Set the FieldsColorization mode to None.

Example

this.FieldsColorization = WorkflowGen.My.Web.UI.WebForms.Fields.ColorizationType.None;

See the WorkflowPage Properties pages for more information on the different Form designer page properties that can be edited.