Label CKID = (Label)Repeater1.Items[i].FindControl("CheckBoxID");
是不是找错了,是label?

解决方案 »

  1.   

    <asp:Label ID="CheckBoxID" runat="server" Text='<%#Eval("ROWID")%>' Visible="false"></asp:Label>这个我还是不会找错的!绑定的默ID 来找到选择该行的值 
      

  2.   

    for (int i = 0; i < Repeater1.Items.Count; i++) 这层循环放到内层去。
      

  3.   

    <asp:Label ID="CheckBoxID" runat="server" Text='<%#Eval("ROWID")%>' Visible="false"></asp:Label>这个绑定就不应该
    服务器控件还用 <%#Eval("ROWID")%>绑定