2013-02-24 82 views
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> 

回答

3

你可以嘗試這樣的事:

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

那麼你可以做一些與tmpControl.text

希望有所幫助。