I need to validate the length of input of a textbox.
The max length property does not work for Multiline textboxes.
The regular expression I have is:
<asp:RegularExpressionValidator ID="RegularExpressionValidator2" runat="server"
ErrorMessage="The notes has exceeded maximum length."
ControlToValidate="txtNotes" Display="Dynamic"
ValidationExpression=".{0,500}" ValidationGroup="PO">
*</asp:RegularExpressionValidator>
The problem I'm having is when a new line is entered into the textbox the validator reports a problem.
What would I need to add to the ValidationExpression to ignore carriage returns?
Thanks