0

当我在 ListView 控件中创建 InsertItemTemplate 时,它​​不会出现。为什么 ?这段代码的问题在哪里?运行 TextBox 控件时,我看不到“输入文本”。

<asp:ListView ID="ChatListView" runat="server" DataSourceID="EntityDataSourceUserPosts" OnItemDataBound="ChatListView_ItemDataBound">
    <ItemTemplate>
            <div class="postContent">
                <%# Eval("PostComment") %>
            </div>
        </div>
    </ItemTemplate>
    <InsertItemTemplate>
        <asp:Label ID="Label2" runat="server" Text="ENTER TEXT"></asp:Label>
        <asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
    </InsertItemTemplate>

</asp:ListView>
4

1 回答 1

1

您是否像下面这样设置 InsertItemPosition:

protected void btn_Click(object sender, EventArgs e)
    {
        ChatListView.InsertItemPosition = InsertItemPosition.FirstItem;
    }
于 2013-02-16T09:51:19.343 回答