Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.32 KB | None | 0 0
  1. XmlDocument doc = new XmlDocument();
  2.  
  3. doc.Load(filePath);
  4. XmlNodeList cellList = doc.SelectNodes("//Row/Cell");
  5.  
  6. foreach (XmlNode node in cellList);
  7. {
  8. string iNumber = cellList[0].Attributes[0].Value;
  9. string iAccountNumber = cellList[1].Attributes[0].Value;
  10. string name = cellList[2].Attributes[0].Value;
  11.  
  12. string iNumber = cellList[0].Attributes[0].Value;
  13.  
  14. <Row>
  15. <Cell ss:StyleID="s69"><Data ss:Type="Number">1</Data></Cell>
  16. <Cell ss:StyleID="s69"><Data ss:Type="Number">340054288</Data></Cell>
  17. <Cell ss:StyleID="s69"><Data ss:Type="String">ИВАНОВ К. С.</Data></Cell>
  18. <Cell ss:StyleID="s69"><Data ss:Type="String">НОВОСТРОЙКА 28 ГА</Data></Cell>
  19. <Cell ss:StyleID="s69"><Data ss:Type="Number">271</Data></Cell>
  20. <Cell ss:StyleID="s69"><Data ss:Type="String">108.8200</Data></Cell>
  21. <Cell ss:StyleID="s69"><Data ss:Type="String">2015-061195</Data></Cell>
  22. <Cell ss:StyleID="s69"><Data ss:Type="String">DDS 232</Data></Cell>
  23. <Cell ss:StyleID="s70"><Data ss:Type="DateTime">2017-09-05T00:00:00.000</Data></Cell>
  24. </Row>
  25.  
  26. innerText: 1, argument[0]: s69
  27. innerText: 340054288, argument[0]: s69
  28. innerText: ИВАНОВ К. С., argument[0]: s69
  29. innerText: НОВОСТРОЙКА 28 ГА, argument[0]: s69
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement