DataSource: Query String Supplying Parameters

  • Thread starter Thread starter Jim McGivney
  • Start date Start date
J

Jim McGivney

When configuring a DataSource for a control in VS'05, when formulating the
WHERE clause, one of the options is to use a Query String to supply the
parameters. Is this the Query String that is used by a response.redirect
object to open the page, or is there another way of supplying the query
string to the datasource ?

Any examples of C# code would be appreciated.

Thanks,

Jim
 
In this context, QueryString represents the string of name=value&name2=value2
parameters on the url following the ? in the url.

You access this with Request.Querystring["keyname"] to get the value (C#).
Peter
 
Back
Top