我正在尝试在ASP.NET Framework 4.5.2(在Visual Studio 2013中)中创建一个简单的Web应用程序。我想从XML文件中读取内容,将内容验证到模式,在default.aspx页面上显示,然后可能添加按钮来编辑这些内容并将更改重新写入XML文件。我遇到的问题是我甚至无法弄清楚如何在listView中显示内容(根据我的搜索,它是一个合适的控件选择)。
在Default.aspx.cs中,在 Page_Load方法中(这是正确的地方吗?),我做了以下工作:
XDocument document = XDocument.Load(AppDomain.CurrentDomain.BaseDirectory + "/App_Data/orders.xml");
XmlSchemaSet schemas = new XmlSchemaSet();
schemas.Add("", XmlReader.Create(AppDomain.CurrentDomain.BaseDirectory + "/App_Data/orderschema.xsd"));
bool errors = false;
document.Validate(schemas, (o, err) =>
{
System.Diagnostics.Debug.WriteLine("Validation error: {0}", err.Message);
errors = true;
});
if (!errors)
{
System.Diagnostics.Debug.WriteLine("XML document successfully validated.");
}
else
{
System.Diagnostics.Debug.WriteLine("XML document does not validate.");
}
这似乎工作正常。加载的文档似乎已成功验证,如果我在XML中出错,验证将失败。
XML文件如下所示:
<?xml version="1.0" encoding="utf-8" ?>
<shiporder orderid="889923">
<orderperson>John Smith</orderperson>
<shipto>
<name>Ola Nordmann</name>
<address>Langgt 23</address>
<city>4000 Stavanger</city>
<country>Norway</country>
</shipto>
<item>
<title>Empire Burlesque</title>
<note>Special Edition</note>
<quantity>1</quantity>
<price>10.90</price>
</item>
<item>
<title>Hide your heart</title>
<quantity>1</quantity>
<!--Change to "one" to see validation error-->
<price>9.90</price>
</item>
</shiporder>
正如您所看到的,它包含订单,并且它可能在标签中包含更多订单。
架构如下所示:
<?xml version="1.0" encoding="utf-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="shiporder">
<xs:complexType>
<xs:sequence>
<xs:element name="orderperson" type="xs:string"/>
<xs:element name="shipto">
<xs:complexType>
<xs:sequence>
<xs:element name="name" type="xs:string"/>
<xs:element name="address" type="xs:string"/>
<xs:element name="city" type="xs:string"/>
<xs:element name="country" type="xs:string"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="item" maxOccurs="unbounded">
<xs:complexType>
<xs:sequence>
<xs:element name="title" type="xs:string"/>
<xs:element name="note" type="xs:string" minOccurs="0"/>
<xs:element name="quantity" type="xs:positiveInteger"/>
<xs:element name="price" type="xs:decimal"/>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
<xs:attribute name="orderid" type="xs:string" use="required"/>
</xs:complexType>
</xs:element>
</xs:schema>
最后,我试图搜索如何填充和管理listView控件,但找不到任何准确的内容。我发现这个例子: Populate ListView from XML file 但它似乎在我的情况下不起作用,因为它是关于Win Forms。我尝试了很多不同的方法,但似乎无法弄明白。
我的Default.aspx现在看起来像这样:
<%@ Page Title="Test" Language="C#" MasterPageFile="~/Site.Master" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="WebApplication1._Default" %>
<asp:Content ID="BodyContent" ContentPlaceHolderID="MainContent" runat="server">
<div class="jumbotron">
<h2>Orders</h2>
<p>Showing orders from XML-file</p>
<asp:ListView ID="listViewOrders" DataSourceID="listViewOrders" runat="server">
</asp:ListView>
<asp:Table ID="Table1" runat="server"></asp:Table>
</div>
</asp:Content>
正如您所看到的,我尝试按照msdn(https://msdn.microsoft.com/en-us/library/bb398790.aspx#Code示例)中的建议在ListView控件中设置属性DataSourceID但是我不知道如何在C#代码中使用它作为我的代码示例在MSDN上找到了SQL数据库的用法。
对于冗长的帖子感到抱歉,如果有什么不清楚或者对我来说应该是显而易见的,请告诉我。我正在寻求一个简单的解决方案,因为我在Web应用程序编程方面不是很有经验。提前谢谢!
答案 0 :(得分:0)
使用以下语法将XML转换为数据集。
DataSet testdataset = new DataSet();
testdataset.ReadXml("InputXmlAsString/FilePath/etc....");
然后将此数据集/数据表分配为ListViewControl id&#34; listViewOrders&#34;
的数据源