如何在“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>