主頁 > 知識庫 > 讀取XML并綁定至RadioButtonList實(shí)現(xiàn)思路及演示動畫

讀取XML并綁定至RadioButtonList實(shí)現(xiàn)思路及演示動畫

熱門標(biāo)簽:蘋果手機(jī)凱立德地圖標(biāo)注 玉林市機(jī)器人外呼系統(tǒng)哪家好 南陽外呼系統(tǒng)定制化 合肥電銷外呼系統(tǒng)哪家公司做的好 百度ai地圖標(biāo)注 預(yù)測式外呼系統(tǒng)使用說明 申請400電話手續(xù) 電話機(jī)器人軟件銷售工作 同安公安400電話怎么申請流程
讀取XML的文檔,可以使用System.Data.DataSet類別中的ReadXml()方法。如下面的xml文檔,放在站點(diǎn)的根目錄之下:
YearOfBirth.xml
復(fù)制代碼 代碼如下:

?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>

使用一個屬性來獲取這個文檔:
復(fù)制代碼 代碼如下:

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

在aspx網(wǎng)頁上拉一個RadioButtonList控件,用來顯示XML的數(shù)據(jù)。
復(fù)制代碼 代碼如下:

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

接下來,用DataSet去讀取剛才寫好的獲取XML文件的屬性。
復(fù)制代碼 代碼如下:

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();
}
}
}

網(wǎng)頁運(yùn)行效果:
您可能感興趣的文章:
  • javascript判斷是否有對RadioButtonList選項(xiàng)選擇
  • ASP.NET jQuery 實(shí)例16 通過控件CustomValidator驗(yàn)證RadioButtonList
  • javascript RadioButtonList獲取選中值
  • RadioButtonList綁定圖片及泛型Dictionary應(yīng)用

標(biāo)簽:南京 臺州 嘉興 南京 淄博 南昌 揚(yáng)州 海南

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《讀取XML并綁定至RadioButtonList實(shí)現(xiàn)思路及演示動畫》,本文關(guān)鍵詞  讀取,XML,并,綁定,至,RadioButtonList,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《讀取XML并綁定至RadioButtonList實(shí)現(xiàn)思路及演示動畫》相關(guān)的同類信息!
  • 本頁收集關(guān)于讀取XML并綁定至RadioButtonList實(shí)現(xiàn)思路及演示動畫的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章