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...
http://www.experts-exchange.com/Programming/Languages/.NET/Q_20319113.html
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...
http://www.experts-exchange.com/Programming/Languages/.NET/Q_20602397.html
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-]+...
http://www.experts-exchange.com/Programming/Languages/.NET/Q_20616345.html
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...
http://www.experts-exchange.com/Web_Development/Web_Languages-Standards/ASP/Q_20688450.htm...
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...
http://www.experts-exchange.com/Web_Development/Web_Languages-Standards/ASP/Q_20908529.htm...
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...
http://www.experts-exchange.com/Programming/Languages/.NET/ASP.NET/Q_21327855.html
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...
http://www.experts-exchange.com/Programming/Languages/.NET/ASP.NET/Q_21426898.html
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...
http://www.experts-exchange.com/Web_Development/Miscellaneous/Q_21478665.html
<asp:regularexpressionvalidator controltovalidate="txtSummary" display="Dynamic" text="Your summary has exceeded 625 characters. You must shorten it to submit it to the database." validationexpres...
http://www.experts-exchange.com/Programming/Languages/.NET/ASP.NET/Q_21646890.html
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...
http://www.experts-exchange.com/Programming/Languages/.NET/ASP.NET/Q_21843286.html