-1

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

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 回答