在控件的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
就可以实现自动编号的功能。