我有这个 XML 文件,比如说(Sample.xml)
<?xml version="1.0" encoding="utf-8" ?>
<drinks>
<drink>
<type>Coke </type>
<image>some.jpg or (url) </image>
<price> $5 </price>
</drink>
<drink>
<type>Pepsi</type>
<image>some.jpg or (url) </image>
<price> $2 </price>
</drink>
</drinks>
我也有一个列表框,它绑定到 XML 文件。
<asp:ListBox ID="ListBox1" runat="server" AutoPostBack="True"
DataSourceID="XmlDataSource2" DataTextField="drinks/drink/type" Height="198px" Width="181px">
</asp:ListBox>
<asp:XmlDataSource ID="XmlDataSource2" runat="server" DataFile="~/XMLFile.xml">
</asp:XmlDataSource>
我怎样才能做到这一点?好吧,为了清楚地解释我的问题,我想这样做,产品和图像的链接应该从 xml 文件加载(图像应该是来自网络的 url)