Example #1
0
        public JsonResult GetMoreModuleList()
        {
            int size = 10;
            int page = 1;

            if (Request.QueryString["page"] != null)
            {
                page = int.Parse(Request.QueryString["page"]);
            }
            string smstype = "1";

            if (Request.QueryString["smstype"] != null)
            {
                smstype = Request.QueryString["smstype"];
            }

            where_model wm = new where_model();

            wm.type = smstype;
            wm.Page = page;
            wm.Size = size;
            IList <SmsTemplate> templist = SmsDataProxy.SMS_Temp_GetListTag(wm);

            return(this.Json(templist, JsonRequestBehavior.AllowGet));
        }