码迷,mamicode.com
首页 > Web开发 > 详细

AspxGridView添加序号列

时间:2014-06-25 16:59:10      阅读:171      评论:0      收藏:0      [点我收藏+]

标签:class   blog   tar   ext   string   os   

       
using System.Globalization;//CultureInfo需要

 protected void AspxGridView_stock_HtmlDataCellPrepared(object sender, DevExpress.Web.ASPxGridView.ASPxGridViewTableDataCellEventArgs e)
        {
            if (e.DataColumn.Caption.Trim() == "序号")
            {
                e.Cell.Text = ((e.VisibleIndex) + 1).ToString(CultureInfo.InvariantCulture);
            }
        }


需要在列表中绑定有名为‘序号’的列

AspxGridView添加序号列,布布扣,bubuko.com

AspxGridView添加序号列

标签:class   blog   tar   ext   string   os   

原文地址:http://www.cnblogs.com/zwc-blog/p/3806130.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!