Page_Load:
If Not IsPostBack Then
viewstate("total")="" '初始化总分
viewstate("piac")=0 '初始化排名
end if
rowdatabound:
If e.Row.RowType = DataControlRowType.DataRow then
if e.Row.Cells(2).Text = viewstate("total") then
e.row.Cells(0).text = viewstate("piac")
else
viewstate("piac") = viewstate("piac") + 1
e.row.Cells(0).text = viewstate("piac")
end if
viewstate("total") = e.Row.Cells(2).Text
end if