2

我首先尝试使用 xmldatasource 并发现您无法对其进行排序。如果您尝试,您只会收到错误:“System.NotSupportedException:数据源不支持排序。”

    GridView1.AllowSorting = true;
    DataSet carsDataSet;
    string filePath = Server.MapPath("App_Data/cars.xml");
    carsDataSet = new DataSet();
    //Read the contents of the XML file into the DataSet
    carsDataSet.ReadXml(filePath);
    GridView1.DataSource = carsDataSet.Tables[0].DefaultView;
    GridView1.DataBind();

这会给我一个异常:“异常详细信息:System.Web.HttpException:未处理的 GridView 'GridView1' 触发事件排序。”

我的xml是这样的:

<Cars>
<car>
<id>11</id>
<make>Audi</make>
<model>A4</model>
<price>39000</price>
</car>
</Cars>

那么解决这个问题的最佳方法是什么?或者我可以以某种方式处理排序事件吗?或者将xml数据加载到LINQ或类似的东西会更容易吗?

4

1 回答 1

1

好的,我为您找到了几个可能的答案。首先,如果您想专门使用 XmlDataSource,答案是使用 XSLT 文件来指定翻译,如本 QA 所示:

如何正确地将 XSLT 参数传递给 XmlDataSource?

或者,这篇文章描述了如何使用 XDocument 将 GridView 绑定到 LINQ 查询的结果以加载 XML 文件:

http://forums.asp.net/t/1627778.aspx/1?Sort+results+from+XMLDataSource

于 2012-10-30T13:50:50.397 回答