Skip to content

XML / XSL

Discussions on XML and related technologies

This category can be followed from the open social web via the handle xml-xsl@forum.codeproject.com

2.6k Topics 6.8k Posts
  • how to connect xml file to tally

    xml tutorial announcement
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • XML from file with special letters

    xml question
    5
    0 Votes
    5 Posts
    0 Views
    M
    No because having an unescaped & is what makes it invalid XML. --Mike-- Visual C++ MVP :cool: LINKS~! Ericahist | PimpFish | CP SearchBar v3.0 | C++ Forum FAQ
  • SharePoint Services 3 Web Parts

    sharepoint help question workspace
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • writing XML in C#.net

    csharp com algorithms xml
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • Create XML File

    xml question announcement
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • Need help with an xPath question

    database xml help tutorial question
    3
    0 Votes
    3 Posts
    0 Views
    G
    Thanks alot George!! Grapes
  • XmlElement Question

    xml database wpf wcf com
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • How to Handle Inline Markup Elements in XSLT

    xml csharp python html
    3
    0 Votes
    3 Posts
    0 Views
    N
    Thanks a lot! Fluent in VB, Attempts to speak C#, Python, English ;) --- File Association in VB.Net Creating Custom Controls: Casino Royale
  • XML

    c++ xml question
    2
    0 Votes
    2 Posts
    0 Views
    G
    There are two Microsoft solutions: MSXML and XmlLite. You can find documentation and samples on http://msdn2.microsoft.com/en-us/default.aspx[^] or just use a search engine such as Google. "We make a living by what we get, we make a life by what we give." --Winston Churchill
  • 0 Votes
    2 Posts
    0 Views
    G
    You can use document order. To locate the first "Param1" element, the XPath is: /RootElement/Param1[1] and the second is: /RootElement/Param1[2]. George "We make a living by what we get, we make a life by what we give." --Winston Churchill
  • Selecting the unique names of the elements in XML

    xml csharp database
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • reading xml schema file and generate xml

    xml csharp database question
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • How to show image in XML?

    xml php help tutorial question
    3
    0 Votes
    3 Posts
    0 Views
    N
    Is using the html namespace what you're looking for? Fluent in VB, Attempts to speak C#, Python, English ;) --- File Association in VB.Net Creating Custom Controls: Casino Royale
  • Access table to XML [modified]

    xml help question
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • Creating an XmlNode / XPathNavigator object From Schema.

    database xml question
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • Create xml file

    html xml question
    3
    0 Votes
    3 Posts
    0 Views
    N
    Hi, Dim dom As New Xml.XmlDocument dom.LoadXml("") Dim root As Xml.XmlElement = dom.DocumentElement Dim Elem As Xml.XmlNode = dom.CreateNode(Xml.XmlNodeType.Element, "item", "") Elem.InnerText = "XYZ" root.AppendChild(Elem) MsgBox(dom.DocumentElement.OuterXml) dom.Save("dom.xml") for more details go to http://msdn2.microsoft.com/en-us/library/system.xml.xmldocument.aspx[^] hope this helps :) NajiCo http://www.InsideVB.NET[^] It's nice 2b important, but it's more important 2b nice...
  • Remove elements from XML. using XSLT and JAXP [modified]

    xml java html com ai-models
    2
    0 Votes
    2 Posts
    0 Views
    M
    Well strangely I am reply to my posted query .. In the given example, it is expected that template in the XSLT, , should remove all occurrence of "outstation" elements from the XML document. This XSLT will work fine for any XML document which doesn't has a "DEFAULT NAMESPACE" declared in root element. In given example, I have declared a default namespace in root element as 'xmlns="http://www.contacts.com/transform"'. Because of the default namespace, the expanded name of element is pair of URI name and Element name (URI name here is "http://www.contacts.com/transform"). So the template defined in XSLT for "outstation" element will fail to match any element in XML file. As the namespaces link the XML & XSLT through a URI. So the solution to this problem is to add a namespace prefix with the namespace name "http://www.contacts.com/transform" in the xslt file and then use the prefix in the XPath statements as shown below: Solution is in XSLT: ... ... ...
  • Project with source code

    algorithms question
    3
    0 Votes
    3 Posts
    0 Views
    S
    hiral_shah wrote: open source code project for bio-infomatic in vb 6. How you will get it in the XML forum. Regards, Satips.:rose: Don't walk in front of me, I may not follow; Don't walk behind me, I may not lead; Walk beside me, and just be my friend. - Albert Camus
  • HTML to XML

    html xml tutorial
    2
    0 Votes
    2 Posts
    0 Views
    G
    I don't understand exactly what you are talking about? Nevertheless, HTML and XML are related markup languages and are usually text files. XHTML is a strict form of HTML since it obeys an XML type-schema. Once you have your document in XHTML, you can transform it to another XML document using XSLT. "We make a living by what we get, we make a life by what we give." --Winston Churchill
  • Xslt (table row shrinks in resultant html) [modified]

    csharp html asp-net xml
    4
    0 Votes
    4 Posts
    0 Views
    G
    Unfortunately, CSS1 and <table> don't work well together. Also, it is very difficult to print from HTML exactly the way you want it. I usually generate a PDF (using Crystal Reports) for my clients to print. "We make a living by what we get, we make a life by what we give." --Winston Churchill