我正在开发一个vb.net 2.0应用程序。我有这个网格视图有五个字段和更新命令按钮。我想通过编写JavaScript并从每个字段编辑控件调用脚本来避免这些字段中的特殊字符。现在把下面的代码工作正常。但是不要为所有编辑和添加按钮执行此操作,而是要有一个函数并从每个控件编辑和添加部分调用它。
<asp:RegularExpressionValidator ID="RegularExpressionValidator1" runat="server"
ControlToValidate="txteditname"
ErrorMessage="Please remove special charachters from from your input."
ValidationExpression="^[a-zA-Z0-9?./,\?@'()-]*$">
</asp:RegularExpressionValidator>