我在父 GridView(gvTopic) 中有一个文本框和按钮。如果单击按钮,我想在 Child GridView(gvComment) 的客户端显示新添加的评论以及将数据存储在数据库中(可能是后台处理,类似于本网站的评论功能)。
<asp:GridView ID="gvTopic" runat="server">
<Columns>
<asp:TemplateField>
<ItemTemplate>
<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
<asp:Button ID="Button2" runat="server" Text="Button" />
<asp:GridView ID="gvComment" runat="server">
<%--Comments--%>
</asp:GridView>
</ItemTemplate>
</asp:TemplateField>
</Columns>
</asp:GridView>
现在,我在按钮单击上绑定子 GridView (gvComment),它首先将数据保存在数据库中,然后绑定它,所以要显示新添加的评论。
或者有什么替代解决方案吗?