如何访问“ListView”控件中的“TextBox”控件?
例如,我想this.AddCommentTextbox.Text
在代码隐藏中使用属性。
asp代码:
<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>