1
votes

This should be a really really simple thing, but for some reason it is just eluding me.

I want a Sharepoint page which will have a drop down list that is tied to a database lookup table.

When an item is selected and they click a GO button, I want it to update a gridview that is also on the page.

I'm looking for a simple how to - while assuming I'm a sharepoint idiot. BTW, I am using the Microsoft Office Sharepoint Designer.

Thanks,

Edit: My need is actually very simple. I want to filter the results of a query using a drop down list. This used to be called a master - detail relationship.

For example, my regular data has school name, application name, and how long the application was running. Because there could be a hundred applications per school and there are 60+ schools, I only want to show one schools information at a time.

So, I want to put a drop down list at the top of the screen which contains the list of schools. When one is selected, the gridview should be updated to reflect the new schools information.

Chris.

2
Maybe you could use Filter Web Parts. office.microsoft.com/en-us/sharepointserver/HA100337861033.aspx (available only with SharePoint Enterprise CAL) But in order to provide you with more detailed answer I would need to know more about your needs.Toni Frankola

2 Answers

2
votes

I currently use a drop down tied to one sharepoint list to filter a dataview of another sharepoint List.

The instructions are here: http://blogs.msdn.com/sharepointdesigner/archive/2007/03/05/asp-net-controls-filter-the-data-view.aspx

1
votes

I'm not exactly sure of the specific needs here, but it seems that you are trying to stretch a bit beyond what Sharepoint Designer is well suited to. To look up data, you do have access via the dataview web part, which is here:

http://office.microsoft.com/en-us/sharepointdesigner/HA100948041033.aspx

However your filtering needs may prevent you from using this. If you want to do it .net without knowing too much about MOSS, you can use the "son of smartpart" (google it) which allows you to host standard .net user controls in webparts.

Hope this helps!