2012-08-30 50 views
-1

我發現頭控制在直放站在C#如何在Repeater中查找標題控件?

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

我得到錯誤如何使用它的.aspx代碼

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

哪裏中繼標記? 「標題」標記在哪裏?在你的代碼背後,你是否試圖訪問中繼器? – Oded

+0

你得到的錯誤是什麼? – Buzz

回答

0

所以,如果一臺服務器的控制,你可以簡單地使用:
在Repeater_ItemDataBound事件

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