Hi i have Ajax update refresh panel for updating newly inserted records, but the timer is refreshing but is not affecting the gridview. I mean my gridview is not updating with new records.
Here is the code:
protected void Timer1_Tick(object sender, EventArgs e)
{
UpdatePaneGridViewCustomerORDER.Update();
}
Markup:
<asp:Timer ID="Timer1" runat="server" Interval="20000" OnTick="Timer1_Tick">
</asp:Timer>
<asp:UpdatePanel ID="UpdatePaneGridViewCustomerORDER" runat="server" UpdateMode="Conditional">
<ContentTemplate>
<triggers>
...
Go to the complete details ...