如何在“ListView”控件中访问或找到“TextBox”控件?
例如,我想在此aspx页面的代码隐藏中使用this.AddCommentTextbox.Text
属性。
aspx页面代码:
<asp:ListView ID="PostsListView" runat="server" DataSourceID="EntityDataSourcePosts">
<ItemTemplate>
<asp:TextBox Text="active" ID="AddCommentTextbox" runat="server" TextMode="MultiLine" Height="100" Width="370"></asp:TextBox>
</ItemTemplate>
</asp:ListView>
答案 0 :(得分:0)
只需遍历ListView的项目,然后使用FindControl("AddCommentTextbox")
或循环控件来查找控件是否为TextBox
类型。
答案 1 :(得分:0)
TextBox commentTextBox = (TextBox)PostsListView.FindControl("AddCommentTextbox");