tags:

views:

892

answers:

2

Anyone know a good Regex expression to drop in the ValidationExpression to be sure that my users are only entering ASCII characters?

<asp:RegularExpressionValidator id="myRegex" runat="server" ControlToValidate="txtName" ValidationExpression="???" ErrorMessage="Non-ASCII Characters" Display="Dynamic" />
A: 

If you want to map the possible 0x00 - 0xff ASCII values you can use this regular expression (.NET).

^([\x00-\xff]*)$
smink
ASCII only goes to 127....
leppie
+2  A: 

One thing you may want to watch out for is the lower part of the ascii table has a lot of control characters which can cause funky results. Here's the expression I use to only allow "non-funky" characters:

^([^\x0d\x0a\x20-\x7e\t]*)$

Jon Biddle