asp.net 自定义用户控件数据读取及赋值实例
本文导语: asp.net自定义的一个用户控件(下拉),从xml文件中获取相关数据,用到了LINQ读取XML的知识,顺便可以学点LINQ的知识哦。 有需要的朋友,抓紧参考下了。 1、XML文件 代码示例: 1 CN 2 EN 2、用户控件关键代码: System...
asp.net自定义的一个用户控件(下拉),从xml文件中获取相关数据,用到了LINQ读取XML的知识,顺便可以学点LINQ的知识哦。
有需要的朋友,抓紧参考下了。
1、XML文件
1
CN
2
EN
2、用户控件关键代码:
SystemVersion.ascx
3、后台文件:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Data;
using System.Xml;
using System.Xml.Linq;
public partial class UserControls_SystemVersion : System.Web.UI.UserControl
{
private const string CON_FilePath = "~/App_Data/sysVersion.xml";
////
/// 下拉框赋值
///
public string Value
{
set { ViewState["Value"] = value; }
get { return ViewState["Value"] == null ? null : ViewState["Value"].ToString().Trim(); }
}
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
DdlBind();
}
}
public void DdlBind()
{
XElement xDoc = XElement.Load(Server.MapPath(CON_FilePath));
// Create the query
var lVersion = from c in xDoc.Descendants("Item")
where c.Element("Version_ID").Value == "1" //目前只显示CN
select new
{
Version_Name = c.Element("Version_Name").Value,
Version_ID = c.Element("Version_ID").Value
};
ddlVersion.DataSource = lVersion.ToList();
ddlVersion.DataTextField = "Version_Name";
ddlVersion.DataValueField = "Version_Name";
ddlVersion.DataBind();
if (Value != null)
{
ddlVersion.SelectedValue=Value;
}
}
}