protected void btnDownloadCurrent_Click(object sender, EventArgs e)
        {
            DataTable dt = new DataTable();

            userVo = (UserVo)Session["userVo"];

            dt = objDownload.downloadAmfiCurrentData(userVo.UserId);
            gvResult.DataSource = dt;
            gvResult.DataBind();
        }