(1) Use the table with in div or panel and try visibility.... (2) Do you wish to continue timer even after the condition satisfied. If not stop it.
On Aug 25, 1:46 pm, Sudhir <[email protected]> wrote: > hi > > i have problem with timer > > the code is > > public partial class _Default : System.Web.UI.Page > > { > public static int time; > > protected void Page_Load(object sender, EventArgs e) > > { > > } > > protected void Timer_Tick(object sender, EventArgs e) > > { > > time++; > > if(time==10) > > { > > Table1.visible=false; > > Button1.visible=true; > > } > > > > }
