void rptContents_ItemDataBound(object sender, RepeaterItemEventArgs e) { if (e.Item.ItemType == ListItemType.Item || e.Item.ItemType == ListItemType.AlternatingItem) { var collectInfo = new CollectInfo(e.Item.DataItem); var ltlItemIndex = e.Item.FindControl("ltlItemIndex") as Literal; var ltlTitle = e.Item.FindControl("ltlTitle") as Literal; var ltlKeywords = e.Item.FindControl("ltlKeywords") as Literal; var ltlStartDate = e.Item.FindControl("ltlStartDate") as Literal; var ltlEndDate = e.Item.FindControl("ltlEndDate") as Literal; var ltlUserCount = e.Item.FindControl("ltlUserCount") as Literal; var ltlPvCount = e.Item.FindControl("ltlPVCount") as Literal; var ltlIsEnabled = e.Item.FindControl("ltlIsEnabled") as Literal; var ltlCollectUrl = e.Item.FindControl("ltlCollectUrl") as Literal; var ltlLogUrl = e.Item.FindControl("ltlLogUrl") as Literal; var ltlPreviewUrl = e.Item.FindControl("ltlPreviewUrl") as Literal; var ltlEditUrl = e.Item.FindControl("ltlEditUrl") as Literal; ltlItemIndex.Text = (e.Item.ItemIndex + 1).ToString(); ltlTitle.Text = collectInfo.Title; ltlKeywords.Text = DataProviderWx.KeywordDao.GetKeywords(collectInfo.KeywordId); ltlStartDate.Text = DateUtils.GetDateAndTimeString(collectInfo.StartDate); ltlEndDate.Text = DateUtils.GetDateAndTimeString(collectInfo.EndDate); ltlUserCount.Text = collectInfo.UserCount.ToString(); ltlPvCount.Text = collectInfo.PvCount.ToString(); ltlIsEnabled.Text = StringUtils.GetTrueOrFalseImageHtml(!collectInfo.IsDisabled); var urlCollect = PageCollectItem.GetRedirectUrl(PublishmentSystemId, collectInfo.Id, GetRedirectUrl(PublishmentSystemId)); ltlCollectUrl.Text = $@"<a href=""{urlCollect}"">参赛记录</a>"; var urlLog = PageCollectLog.GetRedirectUrl(PublishmentSystemId, collectInfo.Id, GetRedirectUrl(PublishmentSystemId)); ltlLogUrl.Text = $@"<a href=""{urlLog}"">投票记录</a>"; //var urlPreview = CollectManager.GetCollectUrl(collectInfo, string.Empty); //urlPreview = BackgroundPreview.GetRedirectUrlToMobile(urlPreview); //ltlPreviewUrl.Text = $@"<a href=""{urlPreview}"" target=""_blank"">预览</a>"; var urlEdit = PageCollectAdd.GetRedirectUrl(PublishmentSystemId, collectInfo.Id); ltlEditUrl.Text = $@"<a href=""{urlEdit}"">编辑</a>"; } }
public void Page_Load(object sender, EventArgs e) { if (IsForbidden) { return; } if (!string.IsNullOrEmpty(Request.QueryString["Delete"])) { var list = TranslateUtils.StringCollectionToIntList(Request.QueryString["IDCollection"]); if (list.Count > 0) { try { DataProviderWx.CollectDao.Delete(PublishmentSystemId, list); SuccessMessage("征集删除成功!"); } catch (Exception ex) { FailMessage(ex, "征集删除失败!"); } } } SpContents.ControlToPaginate = RptContents; SpContents.ItemsPerPage = 30; SpContents.SelectCommand = DataProviderWx.CollectDao.GetSelectString(PublishmentSystemId); SpContents.SortField = CollectAttribute.Id; SpContents.SortMode = SortMode.ASC; RptContents.ItemDataBound += rptContents_ItemDataBound; if (!IsPostBack) { BreadCrumb(AppManager.WeiXin.LeftMenu.IdFunction, AppManager.WeiXin.LeftMenu.Function.IdCollect, "微征集管理", AppManager.WeiXin.Permission.WebSite.Collect); SpContents.DataBind(); var urlAdd = PageCollectAdd.GetRedirectUrl(PublishmentSystemId, 0); BtnAdd.Attributes.Add("onclick", $"location.href='{urlAdd}';return false"); var urlDelete = PageUtils.AddQueryString(GetRedirectUrl(PublishmentSystemId), "Delete", "True"); BtnDelete.Attributes.Add("onclick", PageUtils.GetRedirectStringWithCheckBoxValueAndAlert(urlDelete, "IDCollection", "IDCollection", "请选择需要删除的征集活动", "此操作将删除所选征集活动,确认吗?")); } }