I have three textboxes on an asp.net webform, how/can I use a required field validator to ensure that at least one of them contains text?
+1
A:
I don't think a RequiredFieldValidator fits your requirements. I would go with a CustomValidator assigned to any of your fields and manually check them all when it fires.
<script>
function doCustomValidate(source, args) {
args.IsValid = false;
if (document.getElementById('<% =TextBox1.ClientID %>').value.length > 0) {
args.IsValid = true;
}
if (document.getElementById('<% =TextBox2.ClientID %>').value.length > 0) {
args.IsValid = true;
}
if (document.getElementById('<% =TextBox2.ClientID %>').value.length > 0) {
args.IsValid = true;
}
}
</script>
<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
<asp:CustomValidator ID="CustomValidator1" runat="server" ErrorMessage="have to fill at least 1 field"
ControlToValidate="TextBox1" ClientValidationFunction="doCustomValidate" ValidateEmptyText="true" ></asp:CustomValidator><br />
<asp:TextBox ID="TextBox2" runat="server"></asp:TextBox><br />
<asp:TextBox ID="TextBox3" runat="server"></asp:TextBox><br />
don't forget to set ValidateEmptyText="true"
as the default is to skip empty fields. make sure you create a similar server-side validation method as well.
lincolnk
2010-10-12 15:03:28
+5
A:
I would use a CustomFieldValidator like this:
<asp:CustomValidator ID="MyCustomValidator" runat="server"
ValidationGroup="YOUR_VALIDATION_GROUP_NAME"
OnServerValidate="MyCustomValidator_ServerValidate"
ErrorMessage="At least one textbox needs to be filled in." />
and then in your codebehind you have:
protected void MyCustomValidator_ServerValidate(object source, ServerValidateEventArgs args)
{
if (/* one of three textboxes has text*/)
args.IsValid = true;
else
args.IsValid = false;
}
You can also add a Client-side component to this validation, and make it sexy by extending it with AJAX toolkit's ValidatorCalloutExtender control.
Alex
2010-10-12 15:06:15
I didn't like that this cause a postback so I just ended up setting the ClientIDMode="static" and hard coding the values in a JS function. I wasn't really interested in doing any error messages or anything; I just wanted the button to do nothing. Thanks for the code. It totally worked, its just using a CustomValidator was the wrong choice. Which is my fault, not yours.
Shawn
2010-10-13 04:01:31