I have a web app here in which I would like to use one user pane to allow the user to make certain selections and, upon clicking "Go", another larger pane will use a GridView to display records obtained from a database. The number of columns and fomat of the columns in the resulting GridView would vary depending on the selection that the user makes.
So, I thought it would be best to create and format the GridView columns using server-side code (I'm using VS 2008, ASP.NET 3.5 and C#). However, I'm finding this to be horrendously difficult. Every example that I am seeing seems to want to set up the Grid View and the associated data source apriori in the ASPX code file.
My interpretation of things was: Any and all settings and attributes that can appear for an ASP web control on the client side ASPX file, can be analogously written at application run time by server side code. So, in other words, if an SqlDataSource object is placed in the ASPX file and has the following attributes set:
I have left out all the stuff where you set up the parameters for calling the stored procedure, but you get my point I hope.
The problem seems to be that when I execute the code to configure the GridView and the DataSource and bind the two together, the result I get is nothing. The panel that is supoosed to contain the GridView is completely blank.
Is there something I'm missing? Is there some reason why I can't do what I am proposing?
My database is SQL 2008 and I'm using stored procedures for the record retrieval. The stored procedures require input parameters. All of this has been tested and is working well.
Bookmarks