Avatar of Arnold Layne
Arnold Layne
Flag 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
ASP.NETC#Web Applications

Avatar of undefined
Last Comment
Jerry Miller

8/22/2022 - Mon
ASKER CERTIFIED SOLUTION
Jerry Miller

THIS SOLUTION ONLY AVAILABLE TO MEMBERS.
View this solution by signing up for a free trial.
Members can start a 7-Day free trial and enjoy unlimited access to the platform.
See Pricing Options
Start Free Trial
GET A PERSONALIZED SOLUTION
Ask your own question & get feedback from real experts
Find out why thousands trust the EE community with their toughest problems.
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.
Jerry Miller

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.
Arnold Layne

ASKER
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.
Your help has saved me hundreds of hours of internet surfing.
fblack61
Jerry Miller

Awesome! Glad you were able to get things working.