S
SV
Hi there,
I am using ASP.Net 2.0 with VB.Net.
I want to define variables. For example I want to create variable of
type TableRow and while defining I don't know how many rows i needed.
So what i want to do in my code:
For i As Integer = 0 To dt.Tables(0).Rows.Count - 1
dim tr_i as New TableRow
' other code.....
Next i
But it will define variable as tr_i...but i want tr_0,
tr_1,tr_2,.........
Is it possible?
Thanks,
SV
I am using ASP.Net 2.0 with VB.Net.
I want to define variables. For example I want to create variable of
type TableRow and while defining I don't know how many rows i needed.
So what i want to do in my code:
For i As Integer = 0 To dt.Tables(0).Rows.Count - 1
dim tr_i as New TableRow
' other code.....
Next i
But it will define variable as tr_i...but i want tr_0,
tr_1,tr_2,.........
Is it possible?
Thanks,
SV