Come faccio a fare una casella di controllo richiesto in un modulo ASP.NET?

voti
102

Ho fatto qualche ricerca su questo, e ho trovato più risposte parziali, ma niente che mi dà quel caldo fuzzy questo è il modo giusto per fare questo. Per rispondere alla denuncia più frequente contro questa domanda: caselle di controllo possono avere due stati legittimi - controllati e incontrollato, si tratta di un Accetto i termini e le condizioni ... casella di controllo che devono essere controllati al fine di completare una registrazione, quindi selezionando la casella è richiesto dal punto di vista logica aziendale.

Si prega di fornire informazioni complete cut-n-paste frammenti di codice già pronti con la vostra risposta! So che ci sono diversi pezzi per questo - il CustomValidator (presumibilmente), il code-behind, alcuni javascript e, eventualmente, un assegno di IsValid, e la parte frustrante per me è che in ogni esempio che ho visto, uno di questi critici pezzi manca!

È pubblicato 04/08/2009 alle 16:15
fonte dall'utente
In altre lingue...                            


6 risposte

voti
-1

modo non javascript. . Pagina aspx:

 <form id="form1" runat="server">
<div>
    <asp:CheckBox ID="CheckBox1" runat="server" />
    <asp:CustomValidator ID="CustomValidator1"
        runat="server" ErrorMessage="CustomValidator" ControlToValidate="CheckBox1"></asp:CustomValidator>
</div>
</form>

Codice Dietro:

Protected Sub CustomValidator1_ServerValidate(ByVal source As Object, ByVal args As System.Web.UI.WebControls.ServerValidateEventArgs) Handles CustomValidator1.ServerValidate
    If Not CheckBox1.Checked Then
        args.IsValid = False
    End If
End Sub

Per qualunque azione che potrebbe essere necessario (Business Rules):

If Page.IsValid Then
   'do logic
End If 

Ci scusiamo per il codice VB. . . è possibile convertire in C #, se questo è il vostro piacere. L'azienda per cui sto lavorando per questo momento richiede VB :(

Risposto il 04/08/2009 a 16:36
fonte dall'utente

voti
202

funzione javascript per la validazione lato client (utilizzando jQuery) ...

function CheckBoxRequired_ClientValidate(sender, e)
{
    e.IsValid = jQuery(".AcceptedAgreement input:checkbox").is(':checked');
}

code-behind per la validazione lato server ...

protected void CheckBoxRequired_ServerValidate(object sender, ServerValidateEventArgs e)
{
    e.IsValid = MyCheckBox.Checked;
}

codice ASP.Net per la casella di controllo & validatore ...

<asp:CheckBox runat="server" ID="MyCheckBox" CssClass="AcceptedAgreement" />
<asp:CustomValidator runat="server" ID="CheckBoxRequired" EnableClientScript="true"
    OnServerValidate="CheckBoxRequired_ServerValidate"
    ClientValidationFunction="CheckBoxRequired_ClientValidate">You must select this box to proceed.</asp:CustomValidator>

e, infine, nel postback - se da un pulsante o qualsiasi altra cosa ...

if (Page.IsValid)
{
    // your code here...
}
Risposto il 04/08/2009 a 16:37
fonte dall'utente

voti
17

C # versione di risposta di Andrea:

<asp:CustomValidator ID="CustomValidator1" runat="server" 
        ErrorMessage="Please accept the terms..." 
        onservervalidate="CustomValidator1_ServerValidate"></asp:CustomValidator>
    <asp:CheckBox ID="CheckBox1" runat="server" />

Code-behind:

protected void CustomValidator1_ServerValidate(object source, ServerValidateEventArgs args)
{
    args.IsValid = CheckBox1.Checked;
}
Risposto il 04/08/2009 a 16:39
fonte dall'utente

voti
4

La risposta di Scott lavorerà per classi di caselle di controllo. Se si desidera che le singole caselle di controllo, devi essere un po 'sneakier. Se stai solo facendo una scatola, è meglio farlo con gli ID. Questo esempio fa da caselle di controllo specifici e non necessita di jQuery. E 'anche un piccolo esempio bello di come è possibile ottenere quei fastidiosi ID di controllo in Javascript.

Il .ascx:

<script type="text/javascript">

    function checkAgreement(source, args)
    {                
        var elem = document.getElementById('<%= chkAgree.ClientID %>');
        if (elem.checked)
        {
            args.IsValid = true;
        }
        else
        {        
            args.IsValid = false;
        }
    }

    function checkAge(source, args)
    {
        var elem = document.getElementById('<%= chkAge.ClientID %>');
        if (elem.checked)
        {
            args.IsValid = true;
        }
        else
        {
            args.IsValid = false;
        }    
    }

</script>

<asp:CheckBox ID="chkAgree" runat="server" />
<asp:Label AssociatedControlID="chkAgree" runat="server">I agree to the</asp:Label>
<asp:HyperLink ID="lnkTerms" runat="server">Terms & Conditions</asp:HyperLink>
<asp:Label AssociatedControlID="chkAgree" runat="server">.</asp:Label>
<br />

<asp:CustomValidator ID="chkAgreeValidator" runat="server" Display="Dynamic"
    ClientValidationFunction="checkAgreement">
    You must agree to the terms and conditions.
    </asp:CustomValidator>

<asp:CheckBox ID="chkAge" runat="server" />
<asp:Label AssociatedControlID="chkAge" runat="server">I certify that I am at least 18 years of age.</asp:Label>        
<asp:CustomValidator ID="chkAgeValidator" runat="server" Display="Dynamic"
    ClientValidationFunction="checkAge">
    You must be 18 years or older to continue.
    </asp:CustomValidator>

E il codebehind:

Protected Sub chkAgreeValidator_ServerValidate(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.ServerValidateEventArgs) _
Handles chkAgreeValidator.ServerValidate
    e.IsValid = chkAgree.Checked
End Sub

Protected Sub chkAgeValidator_ServerValidate(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.ServerValidateEventArgs) _
Handles chkAgeValidator.ServerValidate
    e.IsValid = chkAge.Checked
End Sub
Risposto il 18/02/2010 a 00:06
fonte dall'utente

voti
10

Se volete una vera validatore che non si basa su jQuery e gestisce la convalida lato server, nonché (e si dovrebbe. Validazione lato server è la parte più importante) allora qui è un controllo

public class RequiredCheckBoxValidator : System.Web.UI.WebControls.BaseValidator
{
    private System.Web.UI.WebControls.CheckBox _ctrlToValidate = null;
    protected System.Web.UI.WebControls.CheckBox CheckBoxToValidate
    {
        get
        {
            if (_ctrlToValidate == null)
                _ctrlToValidate = FindControl(this.ControlToValidate) as System.Web.UI.WebControls.CheckBox;

            return _ctrlToValidate;
        }
    }

    protected override bool ControlPropertiesValid()
    {
        if (this.ControlToValidate.Length == 0)
            throw new System.Web.HttpException(string.Format("The ControlToValidate property of '{0}' is required.", this.ID));

        if (this.CheckBoxToValidate == null)
            throw new System.Web.HttpException(string.Format("This control can only validate CheckBox."));

        return true;
    }

    protected override bool EvaluateIsValid()
    {
        return CheckBoxToValidate.Checked;
    }

    protected override void OnPreRender(EventArgs e)
    {
        base.OnPreRender(e);

        if (this.Visible && this.Enabled)
        {
            System.Web.UI.ClientScriptManager cs = this.Page.ClientScript;
            if (this.DetermineRenderUplevel() && this.EnableClientScript)
            {
                cs.RegisterExpandoAttribute(this.ClientID, "evaluationfunction", "cb_verify", false);
            }
            if (!this.Page.ClientScript.IsClientScriptBlockRegistered(this.GetType().FullName))
            {
                cs.RegisterClientScriptBlock(this.GetType(), this.GetType().FullName, GetClientSideScript());
            } 
        }
    }

    private string GetClientSideScript()
    {
        return @"<script language=""javascript"">function cb_verify(sender) {var cntrl = document.getElementById(sender.controltovalidate);return cntrl.checked;}</script>";
    }
}
Risposto il 07/12/2011 a 03:21
fonte dall'utente

voti
2

Io di solito eseguire la convalida sul lato client:

<asp:checkbox id="chkTerms" text=" I agree to the terms" ValidationGroup="vg" runat="Server"  />
<asp:CustomValidator id="vTerms"
                ClientValidationFunction="validateTerms" 
                ErrorMessage="<br/>Terms and Conditions are required." 
                ForeColor="Red"
                Display="Static"
                EnableClientScript="true"
                ValidationGroup="vg"
                runat="server"/>

<asp:Button ID="btnSubmit" OnClick="btnSubmit_Click" CausesValidation="true" Text="Submit" ValidationGroup="vg" runat="server" />

<script>
    function validateTerms(source, arguments) {
        var $c = $('#<%= chkTerms.ClientID %>');
        if($c.prop("checked")){
            arguments.IsValid = true;
        } else {
            arguments.IsValid = false;
        }
    }
</script>       
Risposto il 06/02/2015 a 21:35
fonte dall'utente

Cookies help us deliver our services. By using our services, you agree to our use of cookies. Learn more