-1

C#のRepeaterでヘッダーコントロールを見つけています

HtmlGenericControl nameposition = null;
                          nameposition = (HtmlGenericControl)Repeater1.Controls[0].Controls[0].FindControl("tweet-container");

エラーが発生します使用方法は?.Aspxコード

<div  id="tweet-container" runat="server"> </div>
4

1 に答える 1

0

したがって、サーバー コントロールの場合は、次のように単純に使用できます。
Repeater_ItemDataBound イベントで

   HtmlGenericControl divControl = e.Item.FindControl("tweet-container") as HtmlGenericControl;
于 2012-09-03T07:34:59.093 に答える