Always loved parsing, hence the gap.
Now I do so on the server form the document type
<root>
<top>
<record>Ivan 500</record>
<record>Igor 250</record>
<record>Lena 750</record>
</top>
</root>
Then Sharpe party:
XmlDocument xmldoc = new XmlDocument();
xmldoc.LoadXml(callbackLine.ToString());
Xmlnodli XmlNodeList = xmldoc.SelectNodes("Root/top/record");
int num = xmlnodli.Count;
foreach (XmlNode xm in xmlnodli)
{
// here xm.InnerText; contains Lena 750, etc
}
but I is not convenient to build UI because of this, it is necessary that
Lena was in a separate variable and
750 separate. If necessary, an xml document can create any kind)
// need to Lena was in a separate variable and a separate 750.
// If necessary, an xml document can create any kind)
And here the parsing, if the solution to Your question is given by the change in server XML??? - Rosalinda.Leannon commented on July 8th 19 at 16:35