protected void btnUpdate2_Click(object sender, EventArgs e) { try { string OCODE = ((SessionUser)Session["SessionUser"]).OCode; var result = objAtt_BLL.UpdateOTperiodic_ByDate16to31(Convert.ToDateTime(txtDateFrom.Text), Convert.ToDateTime(txtDateTo.Text), OCODE); if (result == 1) { ScriptManager.RegisterStartupScript(this.Page, Page.GetType(), "text", "func('Data Processed Successfully')", true); //lblMessage.Text = "Data Update successfully!"; //lblMessage.ForeColor = System.Drawing.Color.Green; txtDateFrom.Text = ""; txtDateTo.Text = ""; } else { ScriptManager.RegisterStartupScript(this.Page, Page.GetType(), "text", "func('Data Processeing Error!')", true); } } catch (Exception ex) { ScriptManager.RegisterStartupScript(this.Page, Page.GetType(), "text", "func('" + ex.Message + "')", true); } }