Ask a Question related to ASP.NET Data Grid Control, Design and Development.
-
Rock #1
merging multiple datasets to bind to a grid
How can I merge 2 datasets into one, then bind with the datagrid, or bind
the datagrid to 2 datasets? For instance, I have one stored procedure that
finds company name, address, etc., and another stored procedure that finds
employees of that company and the employee information.
Thanks.
Rock Guest
-
Bind grid & textbox
I am pulling a query into a cfgrid and if the value pulled in is NULL, when I select that row, and try to edit it using my textbox, it doesn't... -
bind two datasets together
Hey guys, Basically what I need to do is to bind two datasets together so they each have a copy of the same data. Then I'll put a filter on one... -
How to bind to a drop down list in a grid.
I want to display some drop down lists in a grid. Let's say user Joe is from Region 1, and I want to get a list of users and bind to the grid, but... -
How to bind multiple datasources to one grid?
How can I bind my grid to more than one datasource - that is the question. Right now I bind to a DataView table that has a single DataTable as its... -
Bind Grid / Postback Problem
Hi I have a db with 2 tables that I want to bind to a grid depending on a selection in a Dropdownlist Also I want to be able to select a row... -
Alvin Bruney [MVP] #2
Re: merging multiple datasets to bind to a grid
Couple ways of doing this, you can call merge on the tables in question or
you can build a new dataset from both datasets by iterating both. If you
choose the latter, as you iterate and add, you need to remove so that you
don't have duplicates on the second pass.
--
Regards,
Alvin Bruney
[ASP.NET MVP [url]http://mvp.support.microsoft.com/default.aspx][/url]
Got tidbits? Get it here... [url]http://tinyurl.com/27cok[/url]
"Rock" <rockisland@yahoo.com> wrote in message
news:OaN94bdzEHA.352@TK2MSFTNGP14.phx.gbl...> How can I merge 2 datasets into one, then bind with the datagrid, or bind
> the datagrid to 2 datasets? For instance, I have one stored procedure
> that
> finds company name, address, etc., and another stored procedure that finds
> employees of that company and the employee information.
>
> Thanks.
>
>
Alvin Bruney [MVP] Guest
-
rajdothenew@gmail.com #3
Re: merging multiple datasets to bind to a grid
i have a dropdown in asp.net containing detail about emergency its fields are airways,police station etc having 27 such type of field and for each field i have a table in access data base i want to bind that table on select from dropdown and through click event of button binds only that particular value
rajdothenew@gmail.com Guest



Reply With Quote

