/// <summary>
        /// 获取所有的规则映射的信息
        /// </summary>
        private void GetEasyScript()
        {
            int    start    = 0;
            int    limit    = 0;
            int    iType    = -1;
            string strMapID = string.Empty;

            try
            {
                string starts = Request.Form["start"];
                string limits = Request.Form["limit"];
                if (starts != null)
                {
                    start = int.Parse(starts);
                }
                if (limits != null)
                {
                    limit = int.Parse(limits);
                }
                if (string.IsNullOrEmpty(Request.Form["mapid"]))
                {
                    Response.Write("success:false");
                    return;
                }
                strMapID = Request.Form["mapid"].ToString();
                string strout = new SmsServer.BLL.MapScriptDetail().GetEasyScriptList(start, limit, strMapID);
                Response.Write(strout);
            }
            catch (Exception ee)
            {
                Response.Write("success:false");
            }
        }
 /// <summary>
 /// 获取所有的规则映射的信息
 /// </summary>
 private void GetEasyScript()
 {
     int start = 0;
     int limit = 0;
     int iType = -1;
     string strMapID = string.Empty;
     try
     {
         string starts = Request.Form["start"];
         string limits = Request.Form["limit"];
         if (starts != null)
         {
             start = int.Parse(starts);
         }
         if (limits != null)
         {
             limit = int.Parse(limits);
         }
         if (string.IsNullOrEmpty(Request.Form["mapid"]))
         {
             Response.Write("success:false");
             return;
         }
         strMapID = Request.Form["mapid"].ToString();
         string strout = new SmsServer.BLL.MapScriptDetail().GetEasyScriptList(start, limit, strMapID);
         Response.Write(strout);
     }
     catch (Exception ee)
     {
         Response.Write("success:false");
     }
 }