访问ListView控件中的TextBox控件
本文关键字:控件 TextBox 访问 ListView | 更新日期: 2023-09-27 18:01:07
如何访问"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>
你可以试试这样的东西:
TextBox tmpControl = (TextBox)PostsListView.FindControl("AddCommentTextbox");
然后你可以用tmpControl.text 做点什么
希望能有所帮助。