これは私のカスタムサーバーコントロールのサンプルコードです:
[Designer(typeof(ContainerControlDesigner))]
[ToolboxData("<{0}:BlocArrondi runat=server><ContenuPrincipal></ContenuPrincipal></{0}:BlocArrondi>")]
public class BlocArrondi : WebControl
{
private ITemplate _ContenuPrincipal;
protected Panel _PanelContenuPrincipal = new Panel();
public BlocArrondi()
: base(HtmlTextWriterTag.Div)
{
}
[PersistenceMode(PersistenceMode.InnerProperty)]
[TemplateInstance(TemplateInstance.Single)]
public ITemplate ContenuPrincipal
{
get { return _ContenuPrincipal; }
set { _ContenuPrincipal = value; }
}
protected override void OnInit(EventArgs e)
{
base.OnInit(e);
_PanelContenuPrincipal.ID = "PanelPrincipal";
this.Controls.Add(_PanelContenuPrincipal);
if (_ContenuPrincipal != null)
_ContenuPrincipal.InstantiateIn(_PanelContenuPrincipal);
}
}
そしてここに実装:
<controls:BlocArrondi runat="server">
<ContenuPrincipal>
<asp:Label id="LabelInfo" runat="server" />
</ContenuPrincipal>
</controls:BlocArrondi>
私のラベルLabelInfoは、コードビハインドからアクセスできます。
しかし、RepeaterまたはListViewでカスタムコントロールを使用する場合、ContenuPrincipalテンプレート内でContainer.DataItemプロパティを使用することはできません。
<asp:Repeater id="RepeaterInfos" runat="server">
<ItemTemplate>
<controls:BlocArrondi runat="server">
<ContenuPrincipal>
<asp:Label runat="server" Text="<%# (Container.DataItem as MsgInfo).DisplayMessage() " />
</ContenuPrincipal>
</controls:BlocArrondi>
</ItemTemplate>
</asp:Repeater>
エラーメッセージ:
「System.Web.UI.Control」には「DataItem」の定義が含まれておらず、「System.Web.UI.Control」タイプの最初の引数を受け入れる拡張メソッド「DataItem」が見つかりませんでした(usingディレクティブがありませんか?またはアセンブリリファレンス?)
コントロールのContenuPrincipalテンプレート内でContainer.DataItemプロパティを使用するにはどうすればよいですか?