Advertisement

1 - 10 of 50 containing alltags:("regularexpressionvalidator") (0 seconds)
I'm in an ASP .Net web form, and I'm trying to validate a textbox field using a RegularExpressionValidator object. I'm trying to validate that the textbox has no less than 4 characters and no mo...
Zones: .NETDate Answered: 07/03/2002 Grade: A Views: 0
This should be simple.. I have some textfields where i need to allow only certain characters, ie allow only these: a-z A-Z 0-9 _ - { } []. I find it simpler to allow these characters than disallo...
Zones: .NETDate Answered: 12/08/2003 Grade: A Views: 0
<td> <asp:TextBox id="email" class=smallV runat=server columns=50 /> </td> <asp:RegularExpressionValidator id="RegularExpressionValidator1" runat="server" ValidationExpression="^[\w-\.]+@([\w-]+...
Zones: .NETDate Answered: 05/19/2003 Grade: A Views: 0
Hi, I have a text box that can accept a number 5-99 or an uppercase N or a lowercase n. I have tried using the RegularExpressionValidator with this as the ValidationExpression="[5-99|Nn]" wit...
Zones: ASPDate Answered: 07/24/2003 Grade: A Views: 0
Hi, I need a ValidationExpression for a RegularExpressionValidator. I am trying to allow for four characters with the first being a period and the other three being numbers. i.e. (.018) Th...
Zones: ASPDate Answered: 03/05/2004 Grade: A Views: 0
Hello Everyone! I'm having an issue with my RegularExpressionValidator ValidationExpression. Currently my validation expression is "\w+([0-9,a-z,A-Z])" which does what I need it to, however, now...
Zones: ASP.Net ProgrammingDate Answered: 02/26/2005 Grade: B Views: 0
Does anyone know how to check if a textbox value passes a regular validation value.  I can do it easily from the grid approach but not via actual code ex. sub customFunc(......)       Dim re...
Zones: ASP.Net ProgrammingDate Answered: 06/16/2005 Grade: B Views: 0
Hi, I need to exclude some of alphabetic characters: eg: acceptable chars would be anything but a, b, w, m <asp:RegularExpressionValidator id="valRegExpName" runat="server"                                           ControlToV...
Zones: Web DevelopmentDate Answered: 07/02/2005 Grade: A Views: 0
<asp:regularexpressionvalidator controltovalidate="txtSummary" display="Dynamic" text="Your summary has exceeded 625 characters.  You must shorten it to submit it to the database." validationexpres...
Zones: ASP.Net ProgrammingDate Answered: 11/29/2005 Grade: A Views: 0
In ASP.NET 2.0 I need a regularexpressionvalidator to accept one letter from A to Z without O and L. What is the expression I have to give and also where can I find in the internet the rules for...
Zones: ASP.Net ProgrammingDate Answered: 05/09/2006 Grade: A Views: 0