Hi Guys, I have a huge xml file, with almost 1.000 nodes, I need to page them.
How can I select 10 by 10, I mean, I want to show 10 nodes in each page.
I don´t have any clue, how can I do that, my code goes above:
XmlDocument xDoc = new XmlDocument();
xDoc.LoadXml(responseFromServer);
XmlNodeList nome = xDoc.GetElementsByTagName("no_visitante");
XmlNodeList cd_visit = xDoc.GetElementsByTagName("cd_visitante");
XmlNodeList foto = xDoc.GetElementsByTagName("cd_arquivo_enviado");
XmlNodeList info_adic = xDoc.GetElementsByTagName("dc_infoadicional");
XmlNodeList media = xDoc.GetElementsByTagName("media");
XmlNodeList votos = xDoc.GetElementsByTagName("votos");
XmlNodeList codvoto = xDoc.GetElementsByTagName("cd_arquivo");
Thanks.
Loading
PalPosted Aug 14, 2008, 10:14 AM
Check the following link
http://archive.xmlpronews.com/xmlpronews-41-20040803PagingmechanismusingXMLXSLT.html
http://it.maconstate.edu/tutorials/XML/XML06/xml06-05.aspx
Patel