我一直试图拒绝这些元字符 ^ $ \ / ( ) | ? + * [ ] { } >< 来自表单中的所有文本框。
这就是我所拥有的,它不会拒绝角色。它拒绝输入到 textbox3 中的任何内容。
Imports System.Text.RegularExpressions
Partial Class Default2
Inherits System.Web.UI.Page
Protected Sub company(source As Object, e As ServerValidateEventArgs)
If Not Regex.IsMatch(TextBox3.Text, Regex.Escape("^$\/()|?+[]{}><")) Then
e.IsValid = False
Else
e.IsValid = True
End If
End Sub
End Class
请帮我