如何在Repeater中找到标题控件?

时间:2012-08-30 09:33:39

标签: c# javascript asp.net

我在C#中找到了Repeater中的Header控件

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

我收到错误如何使用它?.Aspx Code

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

1 个答案:

答案 0 :(得分:0)

因此,如果它是服务器控件,您只需使用: 在Repeater ItemDataBound事件中

   HtmlGenericControl divControl = e.Item.FindControl("tweet-container") as HtmlGenericControl;