我们可以结合一个XML文件到清单控制
范例
例如1 -X ML的R adiobuttonList
一个XML文件
这是一个XML文件名为“ countries.xml ” :
<?xml version="1.0" encoding="ISO-8859-1"?>
<countries>
<country>
<text>Norway</text>
<value>N</value>
</country>
<country>
<text>Sweden</text>
<value>S</value>
</country>
<country>
<text>France</text>
<value>F</value>
</country>
<country>
<text>Italy</text>
<value>I</value>
</country>
</countries>
看看XML文件: countries.xml -------------------------------------------------- ------------------------------ 一个DataSet绑定到控制列表首先,进口的“ System.Data ”命名空间。我们需要这种命名与DataSet对象。包括下列指令上方的一个。 aspx页:<%@ Import Namespace="System.Data" %>下一步,创建一个DataSet的XML文件,并加载XML文件到DataSet网页时首先加载:<script runat="server">
sub Page_Load
if Not Page.IsPostBack then
dim mycountries=New DataSet
mycountries.ReadXml(MapPath("countries.xml"))
end if
end sub绑定数据到RadioButtonList控件,首先创建一个RadioButtonList控件(无任何ASP : ListItem元素)的。aspx页:html>
<body><form runat="server">
<asp:RadioButtonList id="rb" runat="server"
AutoPostBack="True" /></form></body>
</html>Then add the script