博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
读取XML并绑定至RadioButtonList
阅读量:5992 次
发布时间:2019-06-20

本文共 1996 字,大约阅读时间需要 6 分钟。

读取XML的文档,可以使用System.Data.DataSet类别中的ReadXml()方法。如下面的xml文档,放在站点的根目录之下:

YearOfBirth.xml
1
2
3
4
5
6
7
8
9
10
11
12

使用一个属性来获取这个文档:

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

在aspx网页上拉一个RadioButtonList控件,用来显示XML的数据。

接下来,用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();        }    }}

网页运行效果:

 

转载地址:http://egvlx.baihongyu.com/

你可能感兴趣的文章
一百网页制作之1
查看>>
关于GRE OVER IPSEC 引起的recursive routing
查看>>
CentOS/ubuntu iscsi initior target
查看>>
超强的盘柜监控
查看>>
Windows7技巧之Powershell攻略
查看>>
Flash在浏览器中全屏,并且隐藏浏览器滚动条
查看>>
ORA-600数据库无法启动一例
查看>>
Wijmo 更优美的jQuery UI部件集:通过jsFiddle测试Wijmo Gauges
查看>>
打开Excel 2007提示:向程序发送命令出现问题。(今天偶然打了补丁后出现的)...
查看>>
新注册的域名,注册商设置暂停解析怎么办?
查看>>
.NET设计模式(14):代理模式(Proxy Pattern)
查看>>
SCCM 2007系列1 安装前的准备
查看>>
ADO.NET与ORM的比较(1):ADO.NET实现CRUD
查看>>
Android 框架层为IMountService 增加新接口
查看>>
关注物理硬盘预警信息
查看>>
.NET简谈接口
查看>>
通过学习JFinal框架后的学习方法个人体会
查看>>
SET XACT_ABORT各种用法及显示结果
查看>>
Lync Server外部访问系列PART6:启用外部访问
查看>>
漫谈ASP.NET设计中的性能优化问题
查看>>