| Author: suman 25 Jul 2008 | Member Level: Gold | Rating: Points: 0 |
ds.Tables[2]
|
| Author: muralidhar 25 Jul 2008 | Member Level: Gold | Rating: Points: 4 |
yes as suman said you can use the third table of dataset
there is another way if you know the exact table name
ds.Tables["Table3"]
if you want to itirate through all the rows you can get them also like
int i; for (i = 0; i<ds.Tables["Table3"].Rows - 1; i++) { //do what ever you want. }
Regards, Muralidhar.
|
| Author: Lakshmankumar M 25 Jul 2008 | Member Level: Gold | Rating: Points: 3 |
ds.Tables["Table3"]
if you want to itirate through all the rows you can get them also like
int i; for (i = 0; i<ds.Tables["Table3"].Rows - 1; i++) { //do what ever you want. }
|