using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; namespace ThenThisai.Transportation { public partial class ThenthisaTransportation : System.Web.UI.MasterPage { protected void Page_Load(object sender, EventArgs e) { } protected void Timer1_Tick(object sender, EventArgs e) { UpdatePanel UpdatePanel1 = (UpdatePanel)this.FindControl("UpdatePanel1"); UpdatePanel1.Update(); } } }