たとえば、この 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ファイルからロードする必要があります(画像はWebからのURLである必要があります)