在ListView控件中访问TextBox控件

时间:2013-02-24 19:41:38

标签: c# asp.net

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

1 个答案:

答案 0 :(得分:4)

您可以尝试这样的事情:

TextBox tmpControl = (TextBox)PostsListView.FindControl("AddCommentTextbox");

然后你可以用tmpControl.text

做点什么

希望有所帮助。