How do I reference a sqldatasource by variable in c#, e.g.
Normal reference would be something like
sqldatasource1.Select.....
but i need something like
String datasourceID="sqldatasource1";
and then use this variable to reference the correct datasource on the page and then perform the select command.
Regards
PG