我正在尝试使用asp:Repeater和asp:XmlDataSource显示sitemap.xml文件的内容(请参阅http://www.sitemaps.org/protocol.php中定义的标准)。
问题是当源 XML 文档包含自定义名称空间(如描述sitemap.xml格式<%#XPath("myNodeName")%>
的标准所要求的)时,活页夹无法工作。
Scott Hanselman 建议使用自定义XmlNamespaceManager但我无法以正确的方式对其进行初始化,因此<%#XPath("myNodeName")%>
不会将值显示到 XML 中。
请注意,通过从 XML 中删除名称空间,以下示例可以正常工作!
源 XML 文件:
<?xml version="1.0" encoding="utf-8"?>
<urlset
xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9
http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd">
<url>
<loc>http://www.firebenchmarks.com/Modules/ContentItems/Public/ContentItems_View.aspx?RCICode=rci_001</loc>
<changefreq>weekly</changefreq>
<priority>1.00</priority>
</url>
<url>
<loc>http://www.firebenchmarks.com/Modules/ProductCustomer/Public/ProductCustomer_Descriptor.aspx</loc>
<changefreq>weekly</changefreq>
<priority>0.90</priority>
</url>
<url>
<loc>http://www.firebenchmarks.com/Modules/ContentItems/Public/ContentItems_View.aspx?RCICode=rci_633765577264687500</loc>
<changefreq>weekly</changefreq>
<priority>0.80</priority>
</url>
</urlset>
ASPX(注意 XPath 活页夹中使用的NsMan):
<asp:Repeater ID="Repeater1" runat="server" DataSourceID="XmlDataSource1">
<ItemTemplate>
<div>
Loc: <asp:TextBox ID="LocTB" runat="server" Text='<%#XPath("loc",NsMan)%>' />
Change frequency: <asp:TextBox ID="ChangeFrequencyTB" runat="server" Text='<%#XPath("changefreq",NsMan)%>' />
Priority: <asp:TextBox ID="PriorityTB" runat="server" Text='<%#XPath("priority",NsMan)%>' />
</div>
</ItemTemplate>
</asp:Repeater>
<asp:XmlDataSource ID="XmlDataSource1" runat="server" DataFile="~/SiteMap.xml" ></asp:XmlDataSource>
后面的代码初始化NsMan属性,由 ASPX 内的 XPath 绑定器使用(这是最有可能出现错误的地方):
public XmlNamespaceManager NsMan
{
get
{
if (_lazyNsMan == null)
{
NameTable table = new NameTable();
_lazyNsMan = new XmlNamespaceManager(table);
_lazyNsMan.AddNamespace("", "http://www.sitemaps.org/schemas/sitemap/0.9");
_lazyNsMan.AddNamespace("xsi", "http://www.w3.org/2001/XMLSchema-instance");
_lazyNsMan.AddNamespace("xsi:schemaLocation", "http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd");
}
return _lazyNsMan;
}
}