How to access or found "TextBox" control inside "ListView" Control ?
For example I want to use this.AddCommentTextbox.Text
property in code-behind of this aspx page.
aspx page code:
<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>