如何在单选按钮中设置必填字段验证器

如何在单选按钮中设置必填字段验证器

本文介绍了如何在单选按钮中设置必填字段验证器的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

I have radion button with same group name, and I would like to validate and it is just required field.

My questions, I have over 100 of this type of validation in different ascx control.
I am thinking to right generic one so I can use it globally. Can you show me how to do that? For calling  the object/class, I prefer to do  that on aspx. This is aspx/C# web app.

Thanks

 <asp:RadioButton ID="rdoArrestedYes" AutoPostBack="true" Text="Yes" GroupName="Arrest" runat="server" />


                                <asp:RadioButton ID="rdoArrestedNo" GroupName="Arrest" Text="No" runat="server" />

                                <asp:RequiredFieldValidator ID="rfvArresed" runat="server" 

                            ControlToValidate="Arrest" ErrorMessage="*" ForeColor="Red" 

                            ValidationGroup="ExtraCurriculam">

推荐答案

<html xmlns="http://www.w3.org/1999/xhtml">
<head  runat="server">
<title>Validate asp.net radiobuttonlist in JQuery</title>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js">
</script>
<script type="text/javascript" language="javascript">




这篇关于如何在单选按钮中设置必填字段验证器的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-23 00:04