<span id="mktg5"></span>

<i id="mktg5"><meter id="mktg5"></meter></i>

        <label id="mktg5"><meter id="mktg5"></meter></label>
        最新文章專題視頻專題問答1問答10問答100問答1000問答2000關鍵字專題1關鍵字專題50關鍵字專題500關鍵字專題1500TAG最新視頻文章推薦1 推薦3 推薦5 推薦7 推薦9 推薦11 推薦13 推薦15 推薦17 推薦19 推薦21 推薦23 推薦25 推薦27 推薦29 推薦31 推薦33 推薦35 推薦37視頻文章20視頻文章30視頻文章40視頻文章50視頻文章60 視頻文章70視頻文章80視頻文章90視頻文章100視頻文章120視頻文章140 視頻2關鍵字專題關鍵字專題tag2tag3文章專題文章專題2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章專題3
        問答文章1 問答文章501 問答文章1001 問答文章1501 問答文章2001 問答文章2501 問答文章3001 問答文章3501 問答文章4001 問答文章4501 問答文章5001 問答文章5501 問答文章6001 問答文章6501 問答文章7001 問答文章7501 問答文章8001 問答文章8501 問答文章9001 問答文章9501
        當前位置: 首頁 - 科技 - 知識百科 - 正文

        asp.net(C#) Xml操作(增刪改查)練習

        來源:懂視網 責編:小采 時間:2020-11-27 22:44:45
        文檔

        asp.net(C#) Xml操作(增刪改查)練習

        asp.net(C#) Xml操作(增刪改查)練習:web.config配置: 代碼如下:<appSettings> <add key=xmlFile value=xml/class.xml/> </appSettings> <appSettings> <add key=xmlFile value=xml/class.xml/&g
        推薦度:
        導讀asp.net(C#) Xml操作(增刪改查)練習:web.config配置: 代碼如下:<appSettings> <add key=xmlFile value=xml/class.xml/> </appSettings> <appSettings> <add key=xmlFile value=xml/class.xml/&g

        web.config配置:
        代碼如下:
        <appSettings>
        <add key="xmlFile" value="xml/class.xml"/>
        </appSettings>
        <appSettings>
        <add key="xmlFile" value="xml/class.xml"/>
        </appSettings>

        前臺:
        代碼如下:
        <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="test_Default" %>
        <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
        <html xmlns="http://www.w3.org/1999/xhtml" >
        <head runat="server">
        <title>C#操作Xml(增刪改查)練習</title>
        </head>
        <body>
        <form id="form1" runat="server">
        <div id="showXml" runat="server">
        顯示Xml文檔
        </div>
        <div style="background-color:Green;color:Yellow;" style="background-color:Green;color:Yellow;">為html控件綁定服務器控件的兩個要點:<br />
        1.onserverclick="serverMethod"這里只寫方法名.<br />
        2.后臺代碼,必須是<br />
        protected void XmlAdd(object sender, EventArgs e){}<br />
        注意兩個參數及保護級.
        </div>
        <input id="btnAdd" type="button" value="add" runat="server" onserverclick="XmlAdd" />
        <input id="btnDelete" type="button" value="delete" runat="server" onserverclick="XmlDelete" />
        <input id="btnUpdate" type="button" value="update" runat="server" onserverclick="XmlUpdate" />
        <input id="btnQuery" type="button" value="query" runat="server" onserverclick="XmlQuery" />
        </form>
        </body>
        </html>
        <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="test_Default" %>
        <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
        <html xmlns="http://www.w3.org/1999/xhtml" >
        <head runat="server">
        <title>C#操作Xml(增刪改查)練習</title>
        </head>
        <body>
        <form id="form1" runat="server">
        <div id="showXml" runat="server">
        顯示Xml文檔
        </div>
        <div style="background-color:Green;color:Yellow;" style="background-color:Green;color:Yellow;">為html控件綁定服務器控件的兩個要點:<br />
        1.onserverclick="serverMethod"這里只寫方法名.<br />
        2.后臺代碼,必須是<br />
        protected void XmlAdd(object sender, EventArgs e){}<br />
        注意兩個參數及保護級.
        </div>
        <input id="btnAdd" type="button" value="add" runat="server" onserverclick="XmlAdd" />
        <input id="btnDelete" type="button" value="delete" runat="server" onserverclick="XmlDelete" />
        <input id="btnUpdate" type="button" value="update" runat="server" onserverclick="XmlUpdate" />
        <input id="btnQuery" type="button" value="query" runat="server" onserverclick="XmlQuery" />
        </form>
        </body>
        </html>

        后臺:
        代碼如下:
        using System;
        using System.Data;
        using System.Configuration;
        using System.Collections;
        using System.Web;
        using System.Web.Security;
        using System.Web.UI;
        using System.Web.UI.WebControls;
        using System.Web.UI.WebControls.WebParts;
        using System.Web.UI.HtmlControls;
        using System.Xml;
        public partial class test_Default : System.Web.UI.Page
        {
        string xmlFile = System.Configuration.ConfigurationManager.AppSettings["xmlFile"];
        XmlDocument XmlDoc = new XmlDocument();
        protected void Page_Load(object sender, EventArgs e)
        {
        Bind();
        }
        private void Bind()
        {
        XmlDoc.Load(Server.MapPath("../" + xmlFile));//向上一級
        this.showXml.InnerHtml = System.Web.HttpUtility.HtmlEncode(XmlDoc.InnerXml);
        }
        protected void XmlAdd(object sender, EventArgs e)
        {
        XmlNode objRootNode = XmlDoc.SelectSingleNode("http://Root"); //聲明XmlNode對象
        XmlElement objChildNode = XmlDoc.CreateElement("Student"); //創建XmlElement對象
        objChildNode.SetAttribute("id", "1");
        objRootNode.AppendChild(objChildNode);
        //
        XmlElement objElement = XmlDoc.CreateElement("Name");//???結點和元素的區別?方法都一樣.
        objElement.InnerText = "tree1";
        objChildNode.AppendChild(objElement);
        //保存
        XmlDoc.Save(Server.MapPath("../" + xmlFile));
        }
        protected void XmlDelete(object sender, EventArgs e)
        {
        string Node = "http://Root/Student[Name='tree1']";//Xml是嚴格區分大小寫的.
        XmlDoc.SelectSingleNode(Node).ParentNode.RemoveChild(XmlDoc.SelectSingleNode(Node));
        //保存
        XmlDoc.Save(Server.MapPath("../" + xmlFile));
        }
        protected void XmlUpdate(object sender, EventArgs e)
        {
        //XmlDoc.SelectSingleNode("http://Root/Student[Name='tree1']/Name").InnerText = "tree2";
        XmlDoc.SelectSingleNode("http://Root/Student[Name='tree1']").Attributes["id"].Value = "001";
        //保存
        XmlDoc.Save(Server.MapPath("../" + xmlFile));
        }
        protected void XmlQuery(object sender, EventArgs e)
        {
        XmlNodeList NodeList = XmlDoc.SelectNodes("http://Root/Student");//查詢全部的student節點
        //循環遍歷節點,查詢是否存在該節點
        for (int i = 0; i < NodeList.Count; i++)
        {
        Response.Write(NodeList[i].ChildNodes[0].InnerText);
        }
        //查詢單個節點,//表示全部匹配的元素./表示以此為根的子元素.javascript下的查詢也是一樣.
        string XmlPathNode = "http://Root/Student[Name='rock']/Photo";
        Response.Write(XmlDoc.SelectSingleNode(XmlPathNode).InnerText);
        }
        }
        using System;
        using System.Data;
        using System.Configuration;
        using System.Collections;
        using System.Web;
        using System.Web.Security;
        using System.Web.UI;
        using System.Web.UI.WebControls;
        using System.Web.UI.WebControls.WebParts;
        using System.Web.UI.HtmlControls;
        using System.Xml;
        public partial class test_Default : System.Web.UI.Page
        {
        string xmlFile = System.Configuration.ConfigurationManager.AppSettings["xmlFile"];
        XmlDocument XmlDoc = new XmlDocument();
        protected void Page_Load(object sender, EventArgs e)
        {
        Bind();
        }
        private void Bind()
        {
        XmlDoc.Load(Server.MapPath("../" + xmlFile));//向上一級
        this.showXml.InnerHtml = System.Web.HttpUtility.HtmlEncode(XmlDoc.InnerXml);
        }
        protected void XmlAdd(object sender, EventArgs e)
        {
        XmlNode objRootNode = XmlDoc.SelectSingleNode("http://Root"); //聲明XmlNode對象
        XmlElement objChildNode = XmlDoc.CreateElement("Student"); //創建XmlElement對象
        objChildNode.SetAttribute("id", "1");
        objRootNode.AppendChild(objChildNode);
        //
        XmlElement objElement = XmlDoc.CreateElement("Name");//???結點和元素的區別?方法都一樣.
        objElement.InnerText = "tree1";
        objChildNode.AppendChild(objElement);
        //保存
        XmlDoc.Save(Server.MapPath("../" + xmlFile));
        }
        protected void XmlDelete(object sender, EventArgs e)
        {
        string Node = "http://Root/Student[Name='tree1']";//Xml是嚴格區分大小寫的.
        XmlDoc.SelectSingleNode(Node).ParentNode.RemoveChild(XmlDoc.SelectSingleNode(Node));
        //保存
        XmlDoc.Save(Server.MapPath("../" + xmlFile));
        }
        protected void XmlUpdate(object sender, EventArgs e)
        {
        //XmlDoc.SelectSingleNode("http://Root/Student[Name='tree1']/Name").InnerText = "tree2";
        XmlDoc.SelectSingleNode("http://Root/Student[Name='tree1']").Attributes["id"].Value = "001";
        //保存
        XmlDoc.Save(Server.MapPath("../" + xmlFile));
        }
        protected void XmlQuery(object sender, EventArgs e)
        {
        XmlNodeList NodeList = XmlDoc.SelectNodes("http://Root/Student");//查詢全部的student節點
        //循環遍歷節點,查詢是否存在該節點
        for (int i = 0; i < NodeList.Count; i++)
        {
        Response.Write(NodeList[i].ChildNodes[0].InnerText);
        }
        //查詢單個節點,//表示全部匹配的元素./表示以此為根的子元素.javascript下的查詢也是一樣.
        string XmlPathNode = "http://Root/Student[Name='rock']/Photo";
        Response.Write(XmlDoc.SelectSingleNode(XmlPathNode).InnerText);
        }
        }

        xml文件
        代碼如下:
        <?xml version="1.0" encoding="gb2312"?>
        <Root>
        <Student Admin="no">
        <Name>rock</Name>
        <NickName>rock1</NickName>
        <Pwd>123</Pwd>
        <Sex>男生</Sex>
        <Birthday>1986-1-1</Birthday>
        <Email>xymac@163.com</Email>
        <QQ>123374355</QQ>
        <Msn>loveplc@live.cn</Msn>
        <Tel>13005129336</Tel>
        <Homepage>//www.gxlcms.com</Homepage>
        <Address>廣州</Address>
        <Work>asp.net菜鳥</Work>
        <Photo>images/rock.gif</Photo>
        <Time>2008-3-18 10:15:29</Time>
        </Student>
        <Student Admin="yes">
        <Name>tree</Name>
        <NickName>宿舍老大</NickName>
        <Pwd>51aspx</Pwd>
        <Sex>男生</Sex>
        <Birthday>
        </Birthday>
        <Email>support@tree.com</Email>
        <QQ>
        </QQ>
        <Msn>
        </Msn>
        <Tel>
        </Tel>
        <Homepage>
        </Homepage>
        <Address>
        </Address>
        <Work>
        </Work>
        <Photo>
        </Photo>
        <Time>2008-3-26 11:39:57</Time>
        </Student>
        <Student>
        <Name>tree2</Name>
        </Student>
        <Student id="001">
        <Name>tree1</Name>
        </Student>
        </Root>

        聲明:本網頁內容旨在傳播知識,若有侵權等問題請及時與本網聯系,我們將在第一時間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com

        文檔

        asp.net(C#) Xml操作(增刪改查)練習

        asp.net(C#) Xml操作(增刪改查)練習:web.config配置: 代碼如下:<appSettings> <add key=xmlFile value=xml/class.xml/> </appSettings> <appSettings> <add key=xmlFile value=xml/class.xml/&g
        推薦度:
        標簽: 練習 )( xml
        • 熱門焦點

        最新推薦

        猜你喜歡

        熱門推薦

        專題
        Top
        主站蜘蛛池模板: 免费无码黄十八禁网站在线观看| a在线观看免费视频| 日韩免费一区二区三区在线播放| 亚洲AV无码精品色午夜在线观看| 你懂的免费在线观看| 久久精品亚洲视频| 99re6免费视频| 亚洲伊人精品综合在合线| 国产免费AV片在线播放唯爱网| 亚洲综合丁香婷婷六月香| 无码一区二区三区免费视频| 亚洲av最新在线观看网址| 国产成人aaa在线视频免费观看 | free哆拍拍免费永久视频| 国产精品亚洲美女久久久 | 99re6在线视频精品免费下载| 亚洲精品免费在线| 毛片免费视频播放| 国产成人亚洲综合无| 中文字幕亚洲一区二区va在线| 日本视频免费高清一本18| 亚洲乱码在线播放| 免费一级毛片免费播放| 拍拍拍无挡视频免费观看1000| 亚洲视频精品在线| 精品免费国产一区二区三区| h视频免费高清在线观看| 久久夜色精品国产噜噜噜亚洲AV | 亚洲AV无码成人精品区日韩| 亚洲伦乱亚洲h视频| 免费91最新地址永久入口| 亚洲AV综合色区无码二区偷拍| 亚洲成a人在线看天堂无码| 久久免费高清视频| 亚洲精品动漫免费二区| 亚洲精品无码鲁网中文电影| 中文字幕无码视频手机免费看| EEUSS影院WWW在线观看免费| 亚洲国产精品综合久久2007| 久久精品亚洲男人的天堂| 亚洲三级高清免费|