Use XML Path to locate Node and edit its value : XPath « XML « ASP.Net

Home
ASP.Net
1.ADO.net Database
2.Ajax
3.Asp Control
4.Collections
5.Components
6.Data Binding
7.Development
8.File Directory
9.HTML Control
10.Language Basics
11.Login Security
12.Mobile Control
13.Network
14.Page
15.Request
16.Response
17.Server
18.Session Cookie
19.Sitemap
20.Theme Style
21.User Control and Master Page
22.Validation by Control
23.Validation by Function
24.WebPart
25.WPF
26.XML
ASP.Net » XML » XPath 
Use XML Path to locate Node and edit its value

<%--
Code Revised from
       
Professional ASP.NET 2.0 XML (Programmer to Programmer) (Paperback)
by Thiru Thangarathinam 

# Publisher: Wrox (January 182006)
# Language: English
# ISBN: 0764596772
--%>
       
       
       
<%@ Page Language="C#" %>
<%@ Import Namespace="System.Xml" %>
<%@ Import Namespace="System.Xml.XPath" %>

<script runat="server">
    void Page_Load(object sender, EventArgs e)
    {
        //Set the ContentType to XML to write XML values
        Response.ContentType = "text/xml";
        string xmlPath = MapPath("MyBooks.xml");
        XmlDocument document = new XmlDocument();        
        document.Load(xmlPath);
        XPathNavigator navigator = document.CreateNavigator();
        int count = navigator.Select("/bookstore/book").Count;
        //Navigate to the right nodes
        navigator.MoveToChild("bookstore""");
        navigator.MoveToChild("book""");
        //Loop through all the book nodes
        for(int i = 0; i < count; i++)
        {                   
            navigator.MoveToChild("price""");
            double discount = navigator.ValueAsDouble +1;            
            navigator.CreateAttribute("""discount""", discount.ToString());
            //Move to the parent book element
            navigator.MoveToParent();
            //Move to the next sibling book element
            navigator.MoveToNext();            
        }
        navigator.MoveToRoot();
        Response.Write (navigator.OuterXml);
    }    
</script>


           
       
Related examples in the same category
1.Use XPath to read XML document
2.XPathNavigator Selection Example
3.Use XPathNavigator to create attribute
4.Finding a Particular Node in an XML Document?
5.Finding a Particular Node in an XML Document (VB)
6.Using the XPathNavigator for Navigating Xml Documents
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.