【发布时间】:2011-08-31 15:05:41
【问题描述】:
我需要在FormView 控件中找到这个<a> 标签,我需要根据条件删除这个标签,但我无法使用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(),都没有成功。
请问有什么办法吗??
【问题讨论】:
标签: c# asp.net formview findcontrol