3
我需要找到這個<a>
標籤在FormView
控制居住,我需要刪除這取決於條件的標籤,但使用FormView.FindControl
方法?
<asp:UpdatePanel ID="upDiscipline" runat="server">
<ContentTemplate>
<asp:FormView ID="fvMediaIntro" runat="server">
<ItemTemplate>
<div class="clipControls">
<a runat="server" id="iNeedToFindThis" href="#">here</a>
</div>
</ItemTemplate>
</ContentTemplate>
</asp:UpdatePanel>
我試圖fvMediaIntro.FindControl()
和fvMediaIntro.Row.FindControl()
我找不到它,既不工作。 有什麼想法嗎?
我可以遍歷Formview中的所有行嗎? – Pankaj 2012-03-27 16:55:16
@PankajGarg,我不確定你的意思是*所有行*! FormView一次只顯示一個數據行 - 可以通過'Row'屬性進行訪問。其他行對象可以基於設置存在,例如, 'HeaderRow','FooterRow','TopPagerRow'等 – VinayC 2012-03-28 04:44:56