30-08-19 09:33 AM
I need to export a XML-file containing all field names and rows from a specific collection.
So far I exported the page using File>Export>Page/Object. However, it does not contain the data from the collections.
Therefore my developer will not be able to help me out writing a code stage, that will help me fix my original problem.
The XML utility does not seem to be helpful in this situation either.
30-08-19 10:09 AM
30-08-19 10:26 AM
30-08-19 10:56 AM
31-08-19 11:48 AM
Dim sw as Object sw = new StringWriter() collInput.WriteXml(sw) xmlResult = sw.ToString()