Ejemplo n.º 1
0
        protected void Button1_Click(object sender, EventArgs e)
        {
            //查询
            Hashtable htapp   = (Hashtable)Application["appconf"];
            string    strcons = (string)htapp["cons"];

            busiq = new BusiComm.BusiQuery(strcons);

            DataTable dtout = busiq.GetKPIOfMonth(ddlMonth.SelectedValue, ddlDeptId.SelectedValue);

            this.DataTableConvert(dtout, "vcDeptId", "tbCommCode", "vcCommSign='MD'");
            this.GridView1.DataSource = dtout;
            this.GridView1.DataBind();
        }