Alright, so right now I have a GridView on my aspx page. It is set to run a stored procedure, get some data and display it. The parameter for the stored proc is set to come in through a query string. So the sqldatasource atuomatically looks for a query string called arg and and uses that as the parameter.
I want to pass more than one value, dynamicly determined, to the sqldatasource. Is this possable? Like give it a bunch of variables to look for and run the procedure with each one?
I suppose I could make a gridview and sqldatasource for each possable value, and each datasource will look for it's own query string. But that seems kinda like the wrong way to do it.
Any ideas? or is this asking for aspx to do too much work for me?
Thanks in advance for any help!