Skip to content

Instantly share code, notes, and snippets.

@dvhthomas
Created October 5, 2009 02:08
Show Gist options
  • Select an option

  • Save dvhthomas/201762 to your computer and use it in GitHub Desktop.

Select an option

Save dvhthomas/201762 to your computer and use it in GitHub Desktop.
<label for="txtEffectiveDate">Date To Process</label>
<asp:TextBox ID="txtEffectiveDate" runat="server"
CssClass="inputWide datePick hilite" />
<asp:RequiredFieldValidator ID="valEffDateNotEmpty" runat="server"
ControlToValidate="txtEffectiveDate"
ErrorMessage="Date to Process date is required"
Display="none"
ValidationGroup="Workflow"
SetFocusOnError="true" />
<asp:CompareValidator ID="valEffDate" runat="server"
ControlToValidate="txtEffectiveDate"
Type="date" Operator="DataTypeCheck" ErrorMessage="Date To Process is not a valid date"
Display="none" ValidationGroup="Workflow" />
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment