/// <summary>
        /// 加载用户图片数据返回
        /// </summary>
        /// <param name="context"></param>
        /// <param name="loadCount"></param>
        /// <param name="loadSize"></param>
        /// <param name="user"></param>
        private void LoadUserPicture(HttpContext context, int loadCount, int loadSize, User user)
        {
            //取数据
            Picture.BLL.PictureInfoBLL bllPicture = new Picture.BLL.PictureInfoBLL();
            var list = bllPicture.QueryList(loadCount + 1, loadSize, new { UId = user.UId }, "UploadDate").Select(p => new { imgUrl = CommonHelper.GetSmallImgPath(p.LargeImgPath), uploadDate = p.UploadDate, collectCount = p.CollectCount, pId = p.PId, width = p.Width, height = p.Height });

            //返回数据
            System.Web.Script.Serialization.JavaScriptSerializer jss = new System.Web.Script.Serialization.JavaScriptSerializer();
            context.Response.Write(jss.Serialize(list));
        }
 protected void Page_Load(object sender, EventArgs e)
 {
     CurrentUser = Session["current_user"] as Model.User;
     Picture.BLL.PictureInfoBLL bllPictureInfo = new Picture.BLL.PictureInfoBLL();
     List = bllPictureInfo.QueryList(-1, 10, new { UId = CurrentUser.UId }, "UploadDate");
 }