2012-02-10 282 views
1

我想做客戶端自定義驗證。我在我的aspx頁面下面的代碼,但我不斷收到一個錯誤說客戶端自定義驗證程序

System.Web.HttpException(0X80004005):控制「chkList_Counts」 通過的「validationCheck」 無法驗證ControlToValidate屬性引用。在 System.Web.UI.WebControls.BaseValidator.CheckControlValidationProperty(字符串 名,字符串propertyName的)在 System.Web.UI.WebControls.CustomValidator.ControlPropertiesValid()在 System.Web.UI.WebControls.BaseValidator.OnPreRender( EventArgs e)at System.Web.UI.Control.PreRenderRecursiveInternal()at

我甚至看不到我的頁面。我在頁面顯示之前立即發現錯誤。

下面是我的代碼

<div> 
      <asp:Panel ID="panel3" runat="server" CssClass="cis_edit_pnl" 
       GroupingText="Counts" Width="1240px"> 
       <asp:CheckBoxList ID="chkList_Counts" runat="server" 
        RepeatDirection="Horizontal" 
        RepeatColumns="3" Width="1060px"> 
       </asp:CheckBoxList> 
       <asp:CustomValidator ID="validationCheck" runat="server" ControlToValidate="chkList_Counts" ClientValidationFunction="check_checkBoxList" EnableClientScript="true" ErrorMessage="At least one of the check boxes should be checked"> 
       </asp:CustomValidator> 
     </asp:Panel> 
    </div> 

和我的javascript功能就像是提前這

function check_checkBoxList(sender, args) { 
     debugger; 
     if (check_Counts() == false) { 
      args.IsValid = false; 
      return; 
     } 
     args.IsValid = true; 
     return; 
    } 

function check_casrepCounts() { 
     var control; 
     control = document.getElementById("<%=chkList_Counts.ClientID %>").getElementsByTagName("input"); 
     if (eval(control)) { 

      for (var i = 0; i < control.length; i++) { 
       if (control[i].checked == true) 
        return true; 
      } 
      return false; 
     } 
    } 

感謝。

+0

什麼是'調試器;'? – jrummell 2012-02-10 19:27:07

+0

這可能有助於http://codeclimber.net.nz/archive/2007/07/19/How-to-add-a-required-validator-to-a-CheckBoxList.aspx – jrummell 2012-02-10 19:28:34

回答

0

它現在正常工作,我只需要刪除controlToValidate和它的工作。

相關問題