예제 #1
0
        public static void Process(IHttpRequest Request, IHttpResponse Response)
        {
            bool     value   = false;
            string   message = "Fail!";
            XElement result  = new XElement("Result");
            int      total   = 0;

            try
            {
                int page        = int.Parse(Request.Uri.QueryString["page"]);
                int size        = int.Parse(Request.Uri.QueryString["size"]);
                int order       = int.Parse(Request.Uri.QueryString["order"]);
                int consortiaID = int.Parse(Request.Uri.QueryString["consortiaID"]);
                using (ConsortiaBussiness db = new ConsortiaBussiness())
                {
                    ConsortiaEventInfo[] infos = db.GetConsortiaEventPage(page, size, ref total, order, consortiaID);
                    ConsortiaEventInfo[] array = infos;
                    for (int i = 0; i < array.Length; i++)
                    {
                        ConsortiaEventInfo info = array[i];
                        result.Add(FlashUtils.CreateConsortiaEventInfo(info));
                    }
                    value   = true;
                    message = "Success!";
                }
            }
            catch (Exception ex)
            {
            }
            result.Add(new XAttribute("total", total));
            result.Add(new XAttribute("vaule", value));
            result.Add(new XAttribute("message", message));
            Response.Write(result.ToString(false));
        }
예제 #2
0
        public void ProcessRequest(HttpContext context)
        {
            bool     value   = false;
            string   message = "Fail!";
            XElement result  = new XElement("Result");
            int      total   = 0;

            try
            {
                int page        = int.Parse(context.Request["page"]);
                int size        = int.Parse(context.Request["size"]);
                int order       = int.Parse(context.Request["order"]);
                int consortiaID = int.Parse(context.Request["consortiaID"]);

                using (ConsortiaBussiness db = new ConsortiaBussiness())
                {
                    ConsortiaEventInfo[] infos = db.GetConsortiaEventPage(page, size, ref total, order, consortiaID);
                    foreach (ConsortiaEventInfo info in infos)
                    {
                        result.Add(FlashUtils.CreateConsortiaEventInfo(info));
                    }

                    value   = true;
                    message = "Success!";
                }
            }
            catch (Exception ex)
            {
                log.Error("ConsortiaEventList", ex);
            }

            result.Add(new XAttribute("total", total));
            result.Add(new XAttribute("value", value));
            result.Add(new XAttribute("message", message));

            context.Response.ContentType = "text/plain";
            context.Response.Write(result.ToString(false));
        }