Hi I am new with C# and aps.net so I apologize if my question doesn't sound right.
I built a Gridview Survey where I have populated questions that seem to be pulling OK from my database.
I am pulling my question from a SQL procedure.
However I am trying to pull my columns from another SQL procedure (my columns will not be static they have to populate based on what was assigned to a certain user in this table). Is it possible to pull my questions from one SQL procedure and my Columns
from another SQL procedure within the same gridview.
Here is my code:
public void FillSectionOneData()
{
DataSet ds = new DataSet();
DataTable table = new DataTable();
DataColumn col=new DataColumn();
table.Columns.Add(" ");
table.Columns.Add("Physician Performance Survey");
table.Columns.Add(col); - here I am trying to populate my Columns from another SQL stored procedure
table.Columns.Add(" ...
Go to the complete details ...