我需要创建一个用户控件,其中包含 Country(下拉)、Address(文本框)、City(文本框)、State(下拉)和 Zip(文本框)的表单字段。如果从下拉列表中选择“美国”,我只想验证城市、州和邮编。通过“验证”我的意思是检查长度 - 就是这样。
我尝试过使用自定义验证器,但我遗漏了一些东西,因为看似应该工作的代码没有做任何事情。例子:
<asp:CustomValidator ErrorMessage="City, State, and Zip are required fields"
Display="None" ID="LocationValidator"
runat="server" ClientValidationFunction="validateLocation"
onservervalidate="LocationValidator_ServerValidate">
</asp:CustomValidator>
然后这是我的验证码
客户端验证:
function validateLocation(sender, args) {
var country = jQuery("#main_2_MailingAddress_Country").val();
var city = jQuery("#main_2_MailingAddress_City").val();
if (city.Length() > 0)
{
args.IsValid = true;
}
else
{
args.IsValid = country != "United States";
}
}
服务器端验证:
protected void LocationValidator_ServerValidate(object source, ServerValidateEventArgs args)
{
if (City.Text.Length > 0)
{
args.IsValid = true;
}
else //nothing was entered for "City"
{
args.IsValid = Country.SelectedValue != "United States";
}
//similar functions for State and Zip go here
}
如果我只进行服务器端验证并且没有在表单上填写任何内容(除了地址字段之外还有其他必填字段),那么我为这些其他字段设置的 RequiredFieldValidators 就会触发。但是,如果我填写了除 City、State 和 Zip(为国家/地区选择 US)以外的所有字段,则表单提交时不会发现这些字段为空。
如果我为我的自定义验证器指定客户端和服务器端验证(如上例所示),则不会触发任何验证器并提交表单。
我意识到这可能是一个冗长而令人困惑的帖子,但是对于我哪里出错了有什么想法吗?