Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ASP Regular Expression Validator for Multi-line textbox

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

like image 665
gazamatazzer Avatar asked Aug 17 '11 15:08

gazamatazzer


1 Answers

Change .{0,500} to [\s\S]{0,500}. Note that carriage returns won't exactly be ignored; they'll still count toward the 500-character limit.

Of course, if 500 characters is the size of your database field, that's exactly the behavior you want.

like image 194
Justin Morgan Avatar answered Sep 18 '22 15:09

Justin Morgan