4
Reply

Stored Procedure returns data from multiple tables. How to access it in your ASP.Net code?

Rahul Chavan

Rahul Chavan

8 years ago
1.2k
0
Reply

    Use Dataset to get value from stored procedure Use below code to retrieve the data from each table Datatable A=ds.Tables[0] Datatable B=ds.Tables[1]

    Rahul Chavan
    8 years ago
    2

    Using Dataset

    we can return dataset and can stored it in dataset and can fetch data from different table using DataSet ds= ds.Tables[0] ,ds.Tables[1]

    Ashwani Bakshi
    6 years ago
    1

    hi , Please look at below link this will help you https://chsakell.com/2013/06/22/ado-net-working-with-dataset-datatable-datacolumn-datarow-and-datarelations/

    Awadhesh Jha
    7 years ago
    1