淘先锋技术网

首页 1 2 3 4 5 6 7
为DataGrid添加一绑定列,  并调至为第一列.
添加DataGrid的事件ItemDataBound事件,如下:
      private void dgShow_ItemDataBound(object sender, System.Web.UI.WebControls.DataGridItemEventArgs e)
        {
            if(e.Item.ItemIndex!=-1)   //如果没有该条件,你会发现第一列的标题显示为0,【说明】标题列的索引为-1.
            {
                e.Item.Cells[0].Text=Convert.ToString(e.Item.ItemIndex+1);
            }
        }

【总结】简单实用, 还发现了标题列的索引为-1.