private void bindData()
        {
            try
            {
                EWA_Common objEWA = new EWA_Common();
                BL_Common  objBL  = new BL_Common();
                objEWA.OrgId = Session["OrgId"].ToString();
                DataSet ds = objBL.BindFeeStructure(objEWA);

                if (ds.Tables[0].Rows.Count > 0)
                {
                    GRDFee.DataSource = ds;
                    GRDFee.DataBind();
                }
                else
                {
                    GRDFee.DataSource = null;
                    GRDFee.DataBind();
                }
            }
            catch (Exception exp)
            {
                GeneralErr(exp.Message.ToString());
            }
        }