User-617859429 posted
Here is my dataset that cgets data from sql server using DAL(Data Access Layer)
protected
DataSet GetData()
{
DataSet ds =
new
DataSet();
ds =DMReportData.Get_MonthlyMatrix_Data();
returnds;
}
Now i want to siplay this data set to my report.
Never done reporting befor.
-----------------
I crated a
1) test aspx page.
2) A report
3) a dataset
i dropped my dataset of report to the table on my report.
I don't know how to bind dataset (ds) from sql server to my report.
Thanks