示例#1
0
        /// <summary>
        /// datagrid数据获取
        /// </summary>
        private void GET_CHARTID()
        {
            BLL.BLLGet_chart_Data DGD = new BLL.BLLGet_chart_Data();
            DataSet DS = DGD.Get_Chartid(user_id);
            //this.dl_data.DataBind();
            int page = Request.Form["page"] != "" ? Convert.ToInt32(Request.Form["page"]) : 0;
            int size = Request.Form["rows"] != "" ? Convert.ToInt32(Request.Form["rows"]) : 0;

            int count = 0;
            if (DS.Tables[0].Rows.Count > 0)
            {
                count = DS.Tables[0].Rows.Count;
            }

            IList<Hashtable> list = new List<Hashtable>();
            //if (list.Count > 0)
            //{
            foreach (DataRow row in DS.Tables[0].Rows)
            {
                Hashtable ht = new Hashtable();
                ht.Add("CHARTID", row["T_CHARTID"].ToString());
                ht.Add("id", row["id"].ToString());
                ht.Add("CHARTDESC", row["T_CHARTDESC"].ToString());
                list.Add(ht);
            }
            //}
            object obj = new
            {
                total = count,
                rows = list
            };
            string result = JsonConvert.SerializeObject(obj);
            Response.Write(result);
            Response.End();
        }
示例#2
0
        /// <summary>
        /// datagrid数据获取
        /// </summary>
        private void GET_CHARTID()
        {
            BLL.BLLGet_chart_Data DGD = new BLL.BLLGet_chart_Data();
            DataSet DS = DGD.Get_Chartid(user_id);
            //this.dl_data.DataBind();
            int page = Request.Form["page"] != "" ? Convert.ToInt32(Request.Form["page"]) : 0;
            int size = Request.Form["rows"] != "" ? Convert.ToInt32(Request.Form["rows"]) : 0;


            int count = 0;

            if (DS.Tables[0].Rows.Count > 0)
            {
                count = DS.Tables[0].Rows.Count;
            }


            IList <Hashtable> list = new List <Hashtable>();

            //if (list.Count > 0)
            //{
            foreach (DataRow row in DS.Tables[0].Rows)
            {
                Hashtable ht = new Hashtable();
                ht.Add("CHARTID", row["T_CHARTID"].ToString());
                ht.Add("id", row["id"].ToString());
                ht.Add("CHARTDESC", row["T_CHARTDESC"].ToString());
                list.Add(ht);
            }
            //}
            object obj = new
            {
                total = count,
                rows  = list
            };
            string result = JsonConvert.SerializeObject(obj);

            Response.Write(result);
            Response.End();
        }
示例#3
0
 /// <summary>
 /// 删除曲线
 /// </summary>
 /// <param name="id">模板ID</param>
 private void Delete_Chart(string id)
 {
     BLL.BLLGet_chart_Data DGD = new BLL.BLLGet_chart_Data();
     DGD.Delete_Chart_All(id);
     GET_CHARTID();
 }
示例#4
0
 /// <summary>
 /// 删除曲线
 /// </summary>
 /// <param name="id">模板ID</param>
 private void Delete_Chart(string id)
 {
     BLL.BLLGet_chart_Data DGD = new BLL.BLLGet_chart_Data();
     DGD.Delete_Chart_All(id);
     GET_CHARTID();
 }