private void BindData()
        {
            DB.Cloud  cloud          = new DB.Cloud();
            int       nReturn        = cloud.W_dashboard(MemberNum, CompanyNum, "ALL");
            DataTable dt_w_Dashboard = Lib.ConvertingProc.w_Dashboard(cloud.dsReturn.Tables[0]);

            nReturn = cloud.w_Dashboard_Chart(MemberNum, CompanyNum, 15, "Windows");
            DataTable dt_w_Dashboard_chart = Lib.ConvertingProc.ChangeDashboardColumnName(cloud.dsReturn.Tables[0]);

            nReturn = cloud.w_Dashboard_DiskFreeSpace_Company(MemberNum, CompanyNum);
            DataTable dt_FreeDisk = Lib.ConvertingProc.SetDiskProc_All(cloud.dsReturn.Tables[0]);

            Lib.Util.SetCache(strW_Dashboard_Cache, dt_w_Dashboard, 15);
            Lib.Util.SetCache(strW_Dashboard_Chart_Cache, dt_w_Dashboard_chart, 15);
            Lib.Util.SetCache(strw_Dashboard_DiskFreeSpace_Company_Cache, dt_FreeDisk, 15);
        }