2
如何訪問「ListView」控件中的「TextBox」控件?在ListView控件中訪問TextBox控件
例如,我想在代碼隱藏中使用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>