Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
CODE PROJECT For Those Who Code
  • Home
  • Articles
  • FAQ
Community
  1. Home
  2. Web Development
  3. ASP.NET
  4. xml and xsl

xml and xsl

Scheduled Pinned Locked Moved ASP.NET
xmlhtmlhelpquestion
1 Posts 1 Posters 2 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • D Offline
    D Offline
    Dylan van Heerden
    wrote on last edited by
    #1

    I have the following function to do an xml transformation private void TransformTheXml() { try { XmlDocument xDoc = new XmlDocument(); xDoc.Load(MapPath("./xml") + @"\xmlpages.xml"); XmlElement root = xDoc.DocumentElement; System.Xml.XPath.XPathNavigator xnav = root.CreateNavigator(); System.Xml.Xsl.XslTransform xslt = new System.Xml.Xsl.XslTransform(); xslt.Load(MapPath("./xml") + @"\xmlpagesxsl.xsl"); XmlTextWriter xwriter = new XmlTextWriter(MapPath("./xml") + @"\xmlpages.html", null); xslt.Transform(xnav, null, xwriter, null); } catch (Exception Error) { this.Label1.Text = Error.Message; } } but I recieve the following "file:///c:/inetpub/wwwroot/SecureConnection/xml/xmlpagesxsl.xsl(2,2) :" when I call the function. Can anyone please explain what this means?

    1 Reply Last reply
    0
    Reply
    • Reply as topic
    Log in to reply
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes


    • Login

    • Don't have an account? Register

    • Login or register to search.
    • First post
      Last post
    0
    • Categories
    • Recent
    • Tags
    • Popular
    • World
    • Users
    • Groups