asp.net讀取Xml檔案並進行DropDownList資料繫結

來源:互聯網
上載者:User
ASP頁面:Code
<asp:DropDownList ID="compactType" runat="server" AutoCallBack="True" Width="153px"> </asp:DropDownList>

Xml檔案文檔Code
<?xml version="1.0" encoding="utf-8" ?>
<roots>
<root>
  <id>1</id>
  <Culture>初中以下</Culture>
</root>
<root>
  <id>2</id>
  <Culture>初中</Culture>
</root>
<root>
  <id>3</id>
  <Culture>中專</Culture>
</root>
<root>
  <id>4</id>
  <Culture>高中</Culture>
</root>
<root>
  <id>5</id>
  <Culture>大專</Culture>
</root>
<root>
  <id>6</id>
  <Culture>本科</Culture>
</root>
</roots>

<3>讀取xmlwen見進行綁定的方法---M

Code
/// <summary>
  /// 讀取xml檔案,用資料填充DropDownList,進行綁定
  /// </summary>
  /// <param name="path">xml檔案路徑</param>
  /// <param name="dp">要進行綁定的DropDownList名稱</param>
  /// <param name="id">DropDownList要顯示的文本(xml檔案的一個節點)</param>
  /// <param name="val">DropDownList要顯示的值(xml檔案的一個節點)</param>
  public void ReadXml(string path,DropDownList dp,string id,string val)
  {
    DataSet ds = new DataSet();
    ds.ReadXml(path);
    dp.DataSource = ds;     
    dp.DataTextField = id ;
    dp.DataValueField = val;
    dp.DataBind();     
  }

<4>調用Code
SecurityFactory sf = new SecurityFactory();
//xml檔案路徑
string path2 = Server.MapPath("./xml/XMLFile2.xml");
sf.ReadXml(path2, this.compactType, "id", "val");

綁定成功!

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.