Link to home
Start Free TrialLog in
Avatar of Arnold Layne
Arnold LayneFlag for United States of America

asked on

dynamically changing the datasource in codebehind file

I am using asp.net and C#. I am familiar with gridviews and datasources. However, i cannot figure out a way, using these controls, to dynamically filter results in the code behind from the sqldatasourse I have set up.

So if the query string has user="all", i want it populate the data grid with all records. If user equals a certain name, it will only show records associated wit the user.

I thought about making multiple datasources and swapping them in and out based on what comes in from the query string, but it doesn't work. The table I am getting data from is simple. It has two columns, filename and user. I want the data grid to only show the filename field, and only show what is dictated by the user found in the query string.

Also, very important. I need to wrap every result line in a hyperlink, that will use the filename data to build the final part of the url of the link
ASKER CERTIFIED SOLUTION
Avatar of Jerry Miller
Jerry Miller
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Arnold Layne

ASKER

Hi Jerry, it took some reading for me, as I'm not very experienced, but I figured it out and it works, and the best part is that it doesn't bomb without query string values, it does the right thing and merely says no values to display. The problem I still have that I mentioned above, is that I need a way to wrap each of these filename values with a hyperlink or a button to be clicked that is associated with each returned record. This is a list of video files, so I plan to use a javascript click event with each of the results, that will swap out the url for the video tag in html5 to the appropriate video.
In your RowDataBound event, you can do something like this;

if (e.Row.RowType == DataControlRowType.DataRow) {
      HyperLink myLink = new HyperLink();
      myLink.Text = columnText;
      myLink.NavigateUrl = "Update.aspx?id=" + columnID;
      container.Controls.Add(myLink);

}

Where columnText is the result that you would like to display in the link and columnID is the key value that you need to navigate in the URL.
I finally saw what you meant when creating the datasouce inside VS. There was an option for parameters and it worked. Looks like ot grabs the value after the query string and sets up a variable to do things with for you.
Awesome! Glad you were able to get things working.