对于每个Gridview无法正常工作

时间:2016-11-17 06:54:17

标签: vb.net linq

你能帮助我完成每个循环的 它只会在我的数据库上多次保存Gridview的第一行。如果我的代码出了什么问题,你能帮我吗?提前谢谢。

这是我的代码

 Using _adTransPlatts As New TradingTransactionRepository

        For Each row As GridViewRow In 
              GridView1.Rows_adTransPlatts.AddPlatts(GridView1.Rows(0).Cells(1).Text, GridView1.Rows(0).Cells(2).Text, GridView1.Rows(0).Cells(3).Text)
        Next
             MsgBox("Completed")
    End Using

1 个答案:

答案 0 :(得分:1)

currentRow

更改 GridView1.Rows(0)
 For Each currentRow As GridViewRow In GridView1.Rows
        _adTransPlatts.AddPlatts(currentRow.Cells(1).Text, currentRow.Cells(2).Text, currentRow.Cells(3).Text)
 Next

GridView1.Rows(0)始终指向第一行