Paul,
Set the AutoPostBack property of the DropDownList to True, then handle the
SelectedIndexChanged event. In the event handler method, you can pass in the
selected table name as a parameter to your business logic/data access class,
then bind the returned data to the GridView.
If you are using ObjectDataSource with the GridView, create a
ControlParameter object in your SelectParameters collection:
<SelectParameters>
<asp:ControlParameter Name="Table" ControlID="DropDownList1"
PropertyName="Text" />
</SelectParameters>
Hope this helps.

Signature
Paulus E Kurniawan
http://www.paulusevan.net
> Hi,
>
[quoted text clipped - 15 lines]
> Many Thanks
> Paul
Paulus E Kurniawan - 13 Mar 2008 02:38 GMT
> <SelectParameters>
> <asp:ControlParameter Name="Table" ControlID="DropDownList1"
> PropertyName="Text" />
> </SelectParameters>
Specify the type for the ControlParameter to create a strongly typed
parameter:
<SelectParameters>
<asp:ControlParameter Name="Table" ControlID="DropDownList1"
PropertyName="Text" Type="String" />
</SelectParameters>

Signature
Paulus E Kurniawan
http://www.paulusevan.net
> Paul,
>
[quoted text clipped - 32 lines]
> > Many Thanks
> > Paul