0

如何在“ListView”控件中访问或找到“TextBox”控件?

例如,我想this.AddCommentTextbox.Text在这个 aspx 页面的代码隐藏中使用属性。

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> 
4

2 回答 2

0
TextBox commentTextBox = (TextBox)PostsListView.FindControl("AddCommentTextbox");
于 2013-02-24T23:57:01.763 回答
0

只需遍历 ListView 的项目,然后使用FindControl("AddCommentTextbox")或循环通过控件来查找控件是否属于 type TextBox

于 2013-02-24T20:06:38.717 回答