public partial class MemberPages_Game : System.Web.UI.Page{ private static Timer clock; private static int test; protected void Page_Load(object sender, EventArgs e) { if(IsPostBack != true) { clock = new Timer(10000); clock.Enabled = true; clock.Elapsed += new ElapsedEventHandler(CallUpdate); } } public void CallUpdate(object source, ElapsedEventArgs e) { test = test +1; //This updates correctly conformationLabel.Text = Convert.ToString(test); //The changes for this label not see on the web form. }}