hi,
i'm using two update panels and one timer
<asp:Timer ID="Timer1" runat="server" Interval="20000" OnTick="Timer1_Tick">
</asp:Timer>
protected void Timer1_Tick(object sender, EventArgs e)
{
UpdatePanelChatNow.Update();
}
by using that my 2 panels are updated.
but i need to update only one update panel
please help me.
it's important to me