0

次のメソッドを持つ WebServerControl "CheckBoxCounter" を使用します。しかし、メソッドはページ上で CheckBoxList を見つけることができません。私はほぼ一日中答えを探しています...助けてもらえますか... WebServerControlは名前空間「AWT.AID.Services」にありますが、ASPXページ/コードビハインドの名前空間はありませんこれは結果に影響します。

     protected virtual CheckBoxList GetCheckBoxListControl()
    {
//  this.CheckBoxListID will be "WorkArea:LbxState"

        if (string.IsNullOrEmpty(this.CheckBoxListID))
            throw new HttpException(string.Format("Value required for the CheckBoxListID property for the CheckBoxCounter control with ID '{0}'.", this.ID));

        String[] strctrl = this.CheckBoxListID.Split(':');
        Control ctrl= new Control();

        for (int i=0;i<strctrl.Length;i++)
        {
            if (i==0)
            {
                ctrl = this.Page.FindControl(strctrl[i]);
            }
            else
            {
                ctrl = ctrl.FindControl(strctrl[i]);
            }
            if (ctrl == null)
            {
                throw new HttpException(string.Format("The CheckBoxCounter control with ID '{0}' could not find a control with the ID '{1}'.", this.ID, ctrl));
            }
        }

        CheckBoxList Cbl = ctrl as CheckBoxList;
        if (Cbl == null)
            throw new HttpException(string.Format("The CheckBoxCounter control with ID '{0}' could not find a CheckBoxList control with the ID '{1}'.", this.ID, this.CheckBoxListID));

        return Cbl;
    }

このコントロールをこのような WebPage で使用します

 <%@ Page Language="C#" MasterPageFile="~/Shared/Default.master" AutoEventWireup="true" CodeFile="Instructions_Add.aspx.cs" Inherits="AID_Instructions_Add" Title="Untitled Page" %>
 <%@ Register Assembly="AID" Namespace="AWT.AID.Services" TagPrefix="cc2" %>
<asp:Content ID="Content1" ContentPlaceHolderID="WorkArea" Runat="Server">
<table width="100%" border="0">
<tr>
        <td class="Labl">
            <asp:Label ID="LblState" runat="server" Text="State"></asp:Label>
            <cc2:CheckBoxCounter ID="CBCState" runat="server" CheckBoxListID="WorkArea:LbxState" />
        </td>
        <td class="Obj" >
            <div class="LeftOpen" style="OVERFLOW: auto; WIDTH: 100%; HEIGHT: 100px;">
            <asp:CheckBoxList ID="LbxState" CssClass="Obj" runat="server" Width="90%" DataTextField="StateName" DataValueField="StateCode" AppendDataBoundItems="True">
                <asp:ListItem Selected="True">ALL</asp:ListItem>
            </asp:CheckBoxList>
            </div></td>
 </tr>
 </table>
</asp:Content>
4

1 に答える 1

0

の値を確認してくださいthis.CheckBoxListID。「:」で分割するのはなぜですか。実際に正しいIDを探しているわけではないので、CheckBoxListがnullになると思います。タグ名を探していると思います。

の場合、GetCheckBoxListControl「LbxState」を探す必要があります

CheckBoxList Cbl = this.FindControl("LbxState") as CheckBoxList;
于 2009-12-21T10:52:40.763 に答える