protected void Page_Load(object sender, EventArgs e)
 {
     if (string.IsNullOrEmpty(base.Title))
     {
         base.Title = "我的待签收内容";
     }
     this.EgvContent.DataSource = ContentManage.GetCommonModelInfoListBySignInStatus(0, this.PageSize, PEContext.Current.Admin.UserName, 2);
     this.EgvContent.DataBind();
     base.Subtitle = "共" + ContentManage.GetTotalOfCommonModelInfo(0, ContentSortType.None, 0).ToString() + "条";
 }