Esempio n. 1
0
        private void QueryData(HttpContext context)
        {
            string code     = context.Request.Params["code"].Trim();
            string codeType = context.Request.Params["codeType"].Trim();
            string ksrq00   = context.Request.Params["ksrq00"];
            string jsrq00   = context.Request.Params["jsrq00"];
            string username = Common.CookieHelper.GetCookieValue("username").Trim();

            Model.DTO.NormalLisReport_list_F model = new Model.DTO.NormalLisReport_list_F()
            {
                code = code, codeType = codeType, ksrq00 = ksrq00, jsrq00 = jsrq00
            };
            BLL.SZY.NormalLisReport_list_F bll = new BLL.SZY.NormalLisReport_list_F();
            string result = bll.GetData(model);

            context.Response.Write(result);
        }
Esempio n. 2
0
 private void QueryData(HttpContext context)
 {
     string code = context.Request.Params["code"].Trim();
     string codeType = context.Request.Params["codeType"].Trim();
     string ksrq00 = context.Request.Params["ksrq00"];
     string jsrq00 = context.Request.Params["jsrq00"];
     string username = Common.CookieHelper.GetCookieValue("username").Trim();
     Model.DTO.NormalLisReport_list_F model = new Model.DTO.NormalLisReport_list_F() { code = code, codeType = codeType, ksrq00 = ksrq00, jsrq00 = jsrq00 };
     BLL.SZY.NormalLisReport_list_F bll = new BLL.SZY.NormalLisReport_list_F();
     string result = bll.GetData(model);
     context.Response.Write(result);
 }