public JsonResult AjaxGetWall(string sessionid, int page)
        {
            WallInfoService WallBll = new WallInfoService();
            int eid = int.Parse(SecurityEncryption.DESDecrypt(sessionid));

            PagerList<WallInfo> list = WallBll.GetWallInfoByPager(eid, page + 1, pageSize);
            return Json(list);
        }
 /// <summary>
 /// 留言墙
 /// </summary>
 /// <returns></returns>
 public ActionResult WllList(string sessionid, string UserID)
 {
     int eid = int.Parse(SecurityEncryption.DESDecrypt(sessionid));
     //查询企业的留言墙内容信息
     ViewData["UserID"] = UserID;
     ViewData["sessionid"] = sessionid;
     WallInfoService WallBll = new WallInfoService();
     ViewData["PageIndex"] = pageIndex;
     return View(WallBll.GetWallInfoByPager(eid, pageIndex, pageSize));
 }