-1
例如填充數據,我從循環111 222 333 送3點的數據,然後我想返回像值:得到循環vb.net
'111', '222', '333'
那麼,如何結合和完成我的循環與substring (')
和(,)
。
因爲我已經執行了條件爲where in ('111','222','333')
的查詢。
這是我在vb.net代碼:
For Each grv As GridViewRow In gridDisplayGRN.Rows
Dim chk As CheckBox = CType(grv.FindControl("ChkSelect"), CheckBox)
If chk.Checked = True Then
Dim p As New PengirimanDetail
p.KodePenerimaan = grv.Cells(2).Text.Trim()
Dim parm = p.KodePenerimaan => first looping get 111 and next looping 222 333
Dim data = "'" + parm + "'" => '111'
Dim return = '111','222','333' ???
End If
Next
請給我真正的代碼,謝謝...
什麼是原始數據?你可以使用Rawdata.Split(「」)嗎? – Fabio
其次 - sql查詢中的硬編碼參數 - 是一種不好的做法 - 即使是數字也是如此。如果這些數字太多,使用SQL參數或使用表類型的Sql參數 – Fabio
真實的代碼? '昏暗的回報='?!您已經是SO的成員超過1年了!我無語。 – varocarbas