主页 > 知识库 > 读取XML并绑定至RadioButtonList实现思路及演示动画

读取XML并绑定至RadioButtonList实现思路及演示动画

热门标签:苹果手机凯立德地图标注 玉林市机器人外呼系统哪家好 南阳外呼系统定制化 合肥电销外呼系统哪家公司做的好 百度ai地图标注 预测式外呼系统使用说明 申请400电话手续 电话机器人软件销售工作 同安公安400电话怎么申请流程
读取XML的文档,可以使用System.Data.DataSet类别中的ReadXml()方法。如下面的xml文档,放在站点的根目录之下:
YearOfBirth.xml
复制代码 代码如下:

?xml version="1.0" encoding="utf-8" ?>
YearOfBirths>
YearOfBirth>
ID>1/ID>
Name>鼠/Name>
/YearOfBirth>
YearOfBirth>
ID>2/ID>
Name>牛/Name>
/YearOfBirth>
YearOfBirth>
ID>3/ID>
Name>虎/Name>
/YearOfBirth>
YearOfBirth>
ID>4/ID>
Name>兔/Name>
/YearOfBirth>
YearOfBirth>
ID>5/ID>
Name>龙/Name>
/YearOfBirth>
YearOfBirth>
ID>6/ID>
Name>蛇/Name>
/YearOfBirth>
YearOfBirth>
ID>7/ID>
Name>马/Name>
/YearOfBirth>
YearOfBirth>
ID>8/ID>
Name>羊/Name>
/YearOfBirth>
YearOfBirth>
ID>9/ID>
Name>猴/Name>
/YearOfBirth>
YearOfBirth>
ID>10/ID>
Name>鸡/Name>
/YearOfBirth>
YearOfBirth>
ID>11/ID>
Name>狗/Name>
/YearOfBirth>
YearOfBirth>
ID>12/ID>
Name>猪/Name>
/YearOfBirth>
/YearOfBirths>

使用一个属性来获取这个文档:
复制代码 代码如下:

private string XmlFile
{
get
{
return Server.MapPath("~/YearOfBirth.xml");
}
}

在aspx网页上拉一个RadioButtonList控件,用来显示XML的数据。
复制代码 代码如下:

asp:RadioButtonList ID="RadioButtonListYearOfBirth" runat="server" RepeatColumns="6" RepeatDirection="Horizontal">/asp:RadioButtonList>

接下来,用DataSet去读取刚才写好的获取XML文件的属性。
复制代码 代码如下:

View Code
using System;
using System.Collections.Generic;
using System.Data;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
public partial class Default3 : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
Data_Binding();
}
private void Data_Binding()
{
using (DataSet ds = new DataSet())
{
ds.ReadXml(XmlFile);
this.RadioButtonListYearOfBirth.DataSource = ds;
this.RadioButtonListYearOfBirth.DataTextField = "Name";
this.RadioButtonListYearOfBirth.DataValueField = "ID";
this.RadioButtonListYearOfBirth.DataBind();
}
}
}

网页运行效果:
您可能感兴趣的文章:
  • javascript判断是否有对RadioButtonList选项选择
  • ASP.NET jQuery 实例16 通过控件CustomValidator验证RadioButtonList
  • javascript RadioButtonList获取选中值
  • RadioButtonList绑定图片及泛型Dictionary应用

标签:南京 台州 嘉兴 南京 淄博 南昌 扬州 海南

巨人网络通讯声明:本文标题《读取XML并绑定至RadioButtonList实现思路及演示动画》,本文关键词  读取,XML,并,绑定,至,RadioButtonList,;如发现本文内容存在版权问题,烦请提供相关信息告之我们,我们将及时沟通与处理。本站内容系统采集于网络,涉及言论、版权与本站无关。
  • 相关文章
  • 下面列出与本文章《读取XML并绑定至RadioButtonList实现思路及演示动画》相关的同类信息!
  • 本页收集关于读取XML并绑定至RadioButtonList实现思路及演示动画的相关信息资讯供网民参考!
  • 推荐文章