protected void TxtAccType_TextChanged(object sender, EventArgs e) { try { string Glname = AST.GetGlname(TxtAccType.Text, TxtBRCD.Text); if (Glname != null) { TxtATName.Text = Glname; } else { WebMsgBox.Show("Please Enter Correct Product Code", this.Page); } } catch (Exception Ex) { ExceptionLogging.SendErrorToText(Ex); } }