How to check when the table is inserted a new row and then auto update Repeater using UpdatePane
问题 I'm programming a Forum. My showcomment.aspx page, I use Repeater to get comment from SQL Database and display them in each topic. I use UpdatePanel to auto update the new comment inserted in Database. <asp:ScriptManager ID="ScriptManager1" runat="server"/> <div onclick="__doPostBack('UpdatePanel1', '');"> <asp:UpdatePanel ID="UpdatePanel1" runat="server" OnLoad="UpdatePanel1_Load"> <ContentTemplate> <asp:Repeater ID="RepeaterComment" runat="server"> .... </asp: Repeater...> </ContentTemplate