在控件的RowDataBound事件中添加如下代码:

   If e.Row.RowIndex <> -1 Then
            Dim orderID As Integer
            orderID = e.Row.RowIndex + 1
            e.Row.Cells(0).Text = orderID.ToString
    End If

就可以实现自动编号的功能。

posted on 2009-07-19 04:03  阿C's  阅读(148)  评论(0编辑  收藏  举报