Hi ,
Could anyone tell me how to display two datasets one below the other in a gridview. The columns of the two datasets are the same but the values are retrieved using different stored procedures. How do i put the datasource and bind it.
Gridv1.DataSource = ds1;
Gridv1.DataSource = ds2;
Gridv1.DataBind();
It doesnt work. Please help me
Loading
NithzPosted Jul 6, 2009, 10:54 AM
ds1 ds2
Vegetables Cost Fruit COst
Carrot 20 Apple 20
Tomato 10 Grapes 10
Then i want my output to be displayed as
Carrot 20
Tomato 10
Apple 20
Grapes 10
Please help me as to how it should be done. The two datasets cannot be placed as a single one as my code for one dataset itself contains many tables.
SreekanthPosted Jul 6, 2009, 8:43 AM
then there is anned of javasript; if(ur in vs. 2003)
NithzPosted Jul 6, 2009, 7:57 AM
could you please give me an sample code plz ..it will help me understanding much better .. Thanks in advance
PrashantPosted Jul 6, 2009, 7:39 AM