请不要在asp.net文本框中禁止使用正则表达式包含单词和数值的" - "(减号)。
请帮助。
由于
答案 0 :(得分:0)
使用自定义字段验证器
进行检查<asp:CustomValidator runat="server" id="cusCustom" controltovalidate="txtCustom" onservervalidate="cusCustom_ServerValidate" errormessage="No - (Minus sign) alowed" />
代码背后:
protected void cusCustom_ServerValidate(object sender, ServerValidateEventArgs e)
{
if(e.Contains("-"))
{
e.IsValid = false;
}
else
{
e.IsValid = true;
}
}