Wrox Programmer Forums
Go Back   Wrox Programmer Forums > XML > XML
|
XML General XML discussions.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the XML section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old March 9th, 2006, 03:36 PM
Registered User
 
Join Date: Feb 2006
Posts: 9
Thanks: 0
Thanked 0 Times in 0 Posts
Default Rename node name

Is it possible to rename a node name which has elements in it?

I have this xml file:
<?xml version="1.0" encoding="UTF-8"?>
<Content>
<Element1>ele2</Element1>
<Element2>ele2</Element2>
</Content>

I want to replace Content with Page in my C# application and I tried:

XmlNode firstNode = xmlDoc.SelectSingleNode("Content");
firstNode.LocalName.Replace("Content","Page");

its not giving any error but it is not updating the file also. Is there anyway to rename this node name?





Similar Threads
Thread Thread Starter Forum Replies Last Post
The reference node is not a child of this node.XSL XMLUser XSLT 2 February 25th, 2008 05:22 AM
how to append child node after an node in XML + C# vishnu108mishra XML 5 November 13th, 2007 05:30 AM
Missing Node (Node data) pashworth XSLT 3 January 29th, 2007 12:39 PM
copy and rename red_fiesta Classic ASP Professional 1 November 8th, 2006 11:00 AM
Copying Source Node attributes to output node pvsat XSLT 2 November 3rd, 2005 09:46 AM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.