Click here to Skip to main content
15,884,099 members
Please Sign up or sign in to vote.
4.00/5 (1 vote)
See more:
Hi Friends I need an help

How to use multiple dataset in a single grid view using asp.net
For egs: the first 3 three cells is filled wid one dataset and the rest with other dataset..
If so den how...
is there any other solution either than this...

Regards
Sushil Dharmar
Posted
Updated 19-Apr-12 5:04am
v3
Comments
RDBurmon 19-Apr-12 10:43am    
Can you share structure of your datasets ?
[no name] 19-Apr-12 10:54am    
The data structure is irrelevant
[no name] 19-Apr-12 10:55am    
Don't ask for urgent help, it is very rude. This is a volunteer site and people will answer on their time, not yours. Bluntly, it may be urgent to you, but not to anyone here.
SushilDharmar 19-Apr-12 11:03am    
ok Mark..

The grid can only be bound to one DataSource so you would need to either merge them or construct one with the elements necessary.
 
Share this answer
 
Comments
SushilDharmar 19-Apr-12 11:06am    
can we use any other data controls either than gridview..?
[no name] 19-Apr-12 13:46pm    
You can use any control you'd like, but they all only accept a single DataSource.
If you want more then you'll need to write it yourself
Hi,
You need to merge those datasets and bind the resulting dataset to your control, take a look at this post:
how to merge two data set[^]

I hope it helps,
Cheers
 
Share this answer
 
Comments
SushilDharmar 21-Apr-12 22:51pm    
ok.....
Hi Friends....
Code for Binding Dataset to Grid View
---------------------------------------------------
SqlConnection con = new SqlConnection(" xyz");
string str = "select colmn1,colmn2 from tablename";
SqlDataAdapter da = new SqlDataAdapter(str,con);
DataSet ds = new DataSet();
da.Fill(ds);
GridView1.DataSource = ds;
GridView1.DataBind();
---------------------------------------------------
Enjoy......
 
Share this answer
 
Comments
CHill60 29-Apr-14 12:40pm    
OP wanted to use multiple datasets. This only covers a single dataset. And it's a year too late on an already answered post

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900