首页 > 代码库 > 给Repater增加等号
给Repater增加等号
//不改变数据结构的情况下,增加行号。对Application服务器压力增大,减少DB服务器压力。
protected void repShow_ItemDataBound(object sender, RepeaterItemEventArgs e)
{
if (e.Item.ItemType == ListItemType.AlternatingItem || e.Item.ItemType == ListItemType.Item)
{
Literal ltTmp = e.Item.FindControl("ltRow") as Literal;
if (ltTmp != null)
{
int pinx = pcCmsContent.CurrentIndex;
int psize = pcCmsContent.PageSize;
ltTmp.Text = (pinx * psize + 1 + e.Item.ItemIndex).ToString();
}
}
}
个人小站
给Repater增加等号
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。