I have built a single column DataTable (dt). The column is called "Col". The table has 17 rows, which are properly filled (separately checked). I'm trying to bind it to a FlyNodeSet (fns) doing the following:
fns.DataSource = dt;
fns.DataMember = "Col"; // probably useless, since we have a single column
fns.DataBind();
This FlyNodeSet is in an aspx page, which in turn is used as NodeSrc for a FlyTreeView. The above code is in the Page_Load() handler of the FlyNodeSet.
When I click to expand the node tied to the FlyNodeSet, everything goes fine until the DataBind executes; I then get the following error in an IE dialog box:
Error occurred:
Description: Error while parsing loaded data.
Details: The download of the specified resource has failed.
I guess I must be missing something in the process. Any hints ?
Thanks,
Pyt.