I am using the update panel triggered on timer tick event which executes following code
In the ShowPanel method I want to make visible another panel outside update panel. but it does not shown until after satisfying the condition the postback happens.
any body have solution?
protected void timerT_Tick(object sender, EventArgs e)
{
if (condition)
{
ShowPanel();
}
}
All I needed is to call the postback script as follows..
More described information is available here