Another point that might help is when I try to write the name of the table as follows:
Response.Write(dsAppData.Tables[0].TableName.ToString());
The word "Table" is outputted on the screen. Anbody have any ideas?
The code I use to fill the DataSet is as follows:
string strAppDetailsQry = "Select A.AppID, A.AppName, A.GripsID";
strAppDetailsQry += " from Application A, FAQ F";
strAppDetailsQry += " where F.AppID = A.AppID";
strAppDetailsQry += " AND F.FAQID = " + Int32.Parse(FAQID.Text);
SqlCommand appDetailsCmd = new SqlCommand(strAppDetailsQry, conn);
...
...
try
{
conn.Open();
dataAdapter = new SqlDataAdapter(strAppDetailsQry, conn);
dsAppData = new DataSet();
dataAdapter.Fill(dsAppData);
....
...
}
...
This is really bugging me so please help!
Regards,
Wallace