I\'m trying to use a RegularexpressionValidator to match an IP address (with possible wildcards) for an IP filtering system.
I\'m using the following Regex:
asp:RegularExpressionValidator does not require you to double-escape backslashes. You should try:
asp:RegularExpressionValidator
([0-9]{1,3}\.|\*\.){3}([0-9]{1,3}|\*){1}