protected void Page_Load(object sender, EventArgs e) { //Limpa Cache Response.Cache.SetCacheability(HttpCacheability.NoCache); Response.Cache.SetExpires(DateTime.Now); Response.Cache.SetNoServerCaching(); Response.Cache.SetNoStore(); //Fim Limpa Cache if ((String)Session["IdSessao"] == null) { Session.Add("fimdesessao", "A Sessão foi expirada, reinicie o sistema!"); Response.Redirect("~\\LoginTimeOut.aspx"); } if (!Page.IsPostBack) { // cbletra.Items.Clear(); Srelib.MontaComboLetra(cbletra, false); cbletra.Text = "A"; //bta_Click(sender, e); } }