Wrox Programmer Forums
Go Back   Wrox Programmer Forums > XML > XSLT
|
XSLT General questions and answers about XSLT. For issues strictly specific to the book XSLT 1.1 Programmers Reference, please post to that forum instead.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the XSLT 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 May 20th, 2008, 12:15 PM
Registered User
 
Join Date: Apr 2008
Posts: 4
Thanks: 0
Thanked 0 Times in 0 Posts
Default How to value in b/n nodes

I'm trying to get value in b/n tags in XML in serverside.
<Book> English </Book>


How can I get "English" value using DOM object.

Thanks in Advance
 
Old May 20th, 2008, 12:20 PM
Friend of Wrox
 
Join Date: Nov 2007
Posts: 1,243
Thanks: 0
Thanked 245 Times in 244 Posts
Default

This is a forum about XSLT, not DOM.
With XSLT you would use
Code:
<xsl:stylesheet
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  version="1.0">

  <xsl:template match="/">
    <xsl:value-of select="normalize-space(Book)"/>
  </xsl:template>

</xsl:stylesheet>
Ask DOM questions in the XML forum but mention which DOM implementation you want to use (e.g. W3C DOM (Level 2 or 3), MSXML DOM, .NET DOM).


--
  Martin Honnen
  Microsoft MVP - XML





Similar Threads
Thread Thread Starter Forum Replies Last Post
Merging nodes trishla XSLT 11 October 18th, 2007 03:01 PM
HOW TO: Display specified # of nodes kwilliams XSLT 2 October 5th, 2005 11:04 AM
Navigate through nodes abelmirma XML 1 May 7th, 2005 07:32 AM
Exclude Nodes seanhaggerty XSLT 1 February 3rd, 2005 06:00 AM
updating nodes? pafo C# 0 November 11th, 2004 08:22 PM





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