public void ShowData(string CORID)
        {
            CustomProfile      profile    = CustomProfile.GetProfile();
            iPartRequestClient objService = new iPartRequestClient();
            tCorrespond        Cor        = new tCorrespond();

            Cor = objService.GetCorrespondanceDetail(long.Parse(CORID.ToString()), profile.DBConnection._constr);

            txtSubject.Text  = Cor.MessageTitle;
            hdnmsgbody.Value = Cor.Message.ToString();
            lblAddHTMLQuestionInRichBox.Visible = true;

            txtSubject.Enabled = false;
            // editEmail.Enabled = false;
            btnSubmit.Visible = false;
        }