Using C# - Web Application
I have a DropDownList with the following entries
Room A
Room B
All Rooms
The datasource is a single table containing a list of all room
bookings. (We have 5 meeting rooms)
If Room A or Room B are selected then the Datagrid below is it updated
to display all the bookings for the selected day for the selected
room. This works perfectly.
eg
From To Booked By
07.00.00 07.29.00 An Other
07.30.00 07.59.00 An Other
08.00.00 08.29.00 An Other
08.30.00 08.59.00
09.00.00 09.29.00
09.30.00 09.59.00
However what we need to do is when the user selects the 'All Rooms'
option then the bookings for all rooms will be displayed on the same
grid eg
Room A Room B
From To Booked By Booked By
07.00.00 07.29.00 An Other
07.30.00 07.59.00 An Other Somebody
08.00.00 08.29.00 An Other Somebody
08.30.00 08.59.00
09.00.00 09.29.00 Somebody
09.30.00 09.59.00
How do I populate the datagrid as above.
Any assistance would be appreciated
Best Regards
Iain
--
Eliyahu Goldin,
Software Developer
Microsoft MVP [ASP.NET]
http://msmvps.com/blogs/egoldin
http://usableasp.net
"Iain Wilson" <Email.Ia...@gmail.com> wrote in message
news:69c91143-f303-4ea6...@d45g2000hsc.googlegroups.com...
1. Get the Data from the Database into a DataSet or put it in a Session
(Preferable) as the round trips will be reduced to the DB.
2. On Selection of the Values in the Drop Down, Use the Data Table Select
Property and store the Filtered data into the New DataTable
3. Assign the value to the DataGrid.
4. Remember for every selection you have to submit the page. Which means a
Page Refresh happens.
So, I think probably this should be helpful to you.
--
Srinivas Nadella
Senior Analyst - Dell Services Inc
Hyderabad
India
Thanks for your replies.
Some useful ideas there.
Many thanks
Iain