ASP.Net Web Application

Soldato
Joined
10 Apr 2006
Posts
7,890
Location
North West
Making a timetable website where the user can select different things such as Room, Course or Module.

I have them working individually on separate pages, ie the user picks the Course then all Modules for that course are listed then they can select the Module and see what Rooms it is in and when etc.

Is it possible to make it so I have a drop down list that says , Room, Course, Module etc

When a user selects one of them it loads, on the same page, the chosen data grid? or do I have to create a drop down list that is made up of links that take the user to a different page depending what they chose?

Thanks!
 
Yes it is possible.

First set allow postback to the dropdown list (its off be default) and create an event handler on selectedchange for each of the dropdown list.
On each handler bind your datagrid with the relevant information.
 
Back
Top Bottom