Hi, I have a datasource and want to convert it to dataset. Can anybody tell me how to do it?
I tried to save the ultradatasource as xml and then used DataSet.ReadXml function to convert it to dataset. But I keep getting a message says,"The attribute 'null' does not match one of the four allowed attributes in the 'xsi' namespace."
There is no automatic conversion from UltraDataSource to a DataSet, they are completely different objects. You would have to write code to manually create tables in your DataSet and populate them with the data structure and copy the rows.