以下是透過讀取xml檔案中的內容並顯示在文字方塊中的範例:
使用系統;
使用系統數據;
使用系統配置;
使用系統.Web;
使用 System.Web.Security;
使用 System.Web.UI;
使用 System.Web.UI.WebControls;
使用 System.Web.UI.WebControls.WebParts;
使用 System.Web.UI.HtmlControls;
使用 System.Xml;
使用 System.Xml.XPath;
公共部分類別 _Default :System.Web.UI.Page
{
公有字串[] x =新字串[4];
protected void Page_Load(物件發送者,EventArgs e)
{
XmlDocument xmlDoc = new XmlDocument();
xmlDoc.Load(Server.MapPath("table.xml"));//你的xml文件
XmlNodeList xmlList = xmlDoc.SelectSingleNode("MapSheet").ChildNodes;
foreach(xmlList 中的 XmlNode xmlNo)
{
//XmlNodeList xe = (XmlNodeList)xmlNo;
XmlElement xe = (XmlElement)xmlNo;
{
if (xe.Name == "表名")
{
y[0] = xe.InnerText;
}
if (xe.Name == "資料來源")
{
y[1] = xe.InnerText;
}
if (xe.Name == "使用者名稱")
{
y[2] = xe.InnerText;
}
if (xe.Name == "密碼")
{
y[3] = xe.InnerText;
}
}
}
TextBox1.Text=y[0];
TextBox2.Text = y[1];
TextBox3.Text = y[2];
TextBox4.Text = y[3];
}
}程式已經過測試,沒有問題。
http://www.cnblogs.com/support/archive/2006/10/21/535967.html