如何使c#中的xml文件与.iqy一起使用,并将其作为数据表导入

我想创build一个Excel文件,其中的数据收集和自动更新我的网站,并显示为数据表。

我试图从我已经创build的表格网站导入网站,但它没有格式化为数据表格。

我也创build了一个xml文件,并使用一个.iqy文件来获取数据,但仍然不会导入为数据表

这是我的.iqy文件,它将导入数据,而不是一个XML

WEB 1 http://localhost:55369/files/SerializationOverview.xml 

这是我testing的xml文件

  <?xml version="1.0"?> <bookstore> <book category="COOKING"> <title lang="en">Everyday Italian</title> <author>Giada De Laurentiis</author> <year>2005</year> <price>30.00</price> </book> <book category="CHILDREN"> <title lang="en">Harry Potter</title> <author>J K. Rowling</author> <year>2005</year> <price>29.99</price> </book> <book category="WEB"> <title lang="en">Learning XML</title> <author>Erik T. Ray</author> <year>2003</year> <price>39.95</price> </book> </bookstore> 

预先感谢您的任何帮助,非常感谢。