2016-11-17 43 views
1

你可以幫我在我的每個循環它只保存我的數據庫多次Gridview的第一行。如果我的代碼有什麼問題,你能幫我嗎?提前致謝。對於每個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 
+0

@Mate謝謝 – jezz

+0

太棒了!添加它作爲答案 – Mate

回答

1

變化GridView1.Rows(0)通過currentRow

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)總是指第一行