1.

Set table name in dataset

Answer»

To set NAME of table in DATASET first of all we have to bind the dataset with the database after this use Below syntax
ds.Tables[0].TableName = "tablename1";
ds.Tables[1].TableName = "tablename2";



Discussion

No Comment Found