Code is being written in C# for a Web App that is .net 2.0 framework
Right now I'm taking XML and parsing it into a DataTable in the code behind . Then I set the datasource
RadGrid1.DataSource = dataTable;
RadGrid1.DataBind();
Now it shows up correctly on my page. I have Edit and Delete buttons set up on that same table.
Yet when I click on the edit button my table disappears, as in, it turns to a black line. Which I assume means it lost it's data.
Where am I going wrong here?
Right now I'm taking XML and parsing it into a DataTable in the code behind . Then I set the datasource
RadGrid1.DataSource = dataTable;
RadGrid1.DataBind();
Now it shows up correctly on my page. I have Edit and Delete buttons set up on that same table.
Yet when I click on the edit button my table disappears, as in, it turns to a black line. Which I assume means it lost it's data.
Where am I going wrong here?