I have two queries which are specified below.
select (t1.projectID),t2.FID,t1.Title,t1.ConsultancyAgency,t1.Client
from (select * from consultancy_det ) t1
inner join (select * from contribution_fid_map) t2 on t1.ProjectID = t2.ProjectID
Second Query is:
select name,fid from Personal_det;ss
Output of First Query
ProjectID FID Title ConsulancyAgency Client
1 mahe001508 Android Application Development Project Ideas MAHE ICAS
1 7894 Android Application Development Project Ideas MAHE ICAS
2 2222 abc MIT KMC
2 7894 abc MIT KMC
Output of second query:
Name FID
abcgh 2222
ANaa 7894
hhk faw1
Shreyas Tg mahe001508
NewFaculty mcis001
Now using those above query i need to bind the data to the Gridview in asp.net and the gridview should be seen some what like this.
ProjectID FID Title ConsulancyAgency Client
1 Shreyas Tg Android Application Development Project Ideas MAHE ICAS
ANaa
2 abcgh abc KMC MIT
ANaa
Is this possible to display the data like this in gridview?? Any help appreciated.