Posted on: 9/19/2014 10:20:00 PM | Views : 424

In an vb.net 2010 web form existing application that uses master pages, I have added a 't.aspx' page that can be linked to from any other web page.
Now I want to be able to load values into a gridview control that has sql behind it. I would like values to be displayed in the gridview control based upon values a user enters into 3 different textboxes called lname, fname, and mname.  The user does not even have to enter any values into the textboxes and this would return all rows in the table.
The following is the sql I want to use:
SELECT [lastName]  ,[firstName] ,[middleName] ,[suffix]  ,[userid] ,schoolnum  Go to the complete details ...