4
Reply

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

Rahul Chavan

Rahul Chavan

Apr 13, 2016
1.2k
0

    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
    April 13, 2016
    1

    Using Dataset

    Ashish Srivastava
    December 21, 2017
    0

    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
    December 02, 2017
    0

    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
    August 11, 2017
    0