我在 a 中有一个textbox
控件和一个button
控件listview
,我想在代码后面需要时隐藏这些控件,我尝试过使用类似这样的东西
ListViewName.FindControl("TextBoxComment").Visible = false;
和
((TextBox)ListViewName.FindControl("TextBoxComment")).Visible = false
但是当我运行它给出的代码时NullReference Exception
请帮助。
<ItemTemplate>
<table>
<tr>
<td>
<asp:TextBox ID="TextBoxComment" runat="server" >
</asp:TextBox>
</td>
<td>
<asp:Button ID="ButtonSubmit" runat="server"
CommandName="Comment"
CommandArgument='<%# Eval("FlowPostID") %>'/>
</td>
</tr>
</table>
</ItemTemplate>