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
  • XMl document for Model the images

    xml question
    2
    0 Votes
    2 Posts
    0 Views
    R
    Try the XMLTextWriter Class Rocky You can't climb up a ladder with your hands in your pockets.
  • Images path in xml

    xml help
    2
    0 Votes
    2 Posts
    0 Views
    R
    I think you should try to be a lot more specific that thsi if you wanna get some kind of a response... People are not free enuff to just solve out your whole assignments. you should tell us what progress you've made and what's the problem your getting or atmost asking for a little conceptual help! Hope u got my point. Thanks Rocky You can't climb up a ladder with your hands in your pockets.
  • Issues w/ xsd.exe tool

    csharp xml asp-net database dotnet
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • getting attribute value of an element in xml file [modified]

    xml help
    3
    0 Votes
    3 Posts
    0 Views
    X
    for C# FileStream fs = new FileStream(filepath, FileMode.Open, FileAccess.Read, FileShare.ReadWrite); XmlDocument xmldoc = new XmlDocument(); xmldoc.Load(fs); XmlNodeList xmlnode = xmldoc.GetElementsByTagName("result"); string id = xmlnode[0].Attributes[0].Value; hope this will work Becoming Programmer...
  • Data transfering in DTS from Access to SQl table

    database csharp help announcement
    2
    0 Votes
    2 Posts
    0 Views
    G
    So what is your issue, and how is it related to XML/XSL? "We make a living by what we get, we make a life by what we give." --Winston Churchill
  • how do we split single cell into rows in XSLT

    xml help
    2
    0 Votes
    2 Posts
    0 Views
    G
    What is the document type and the formatting of the column. You are very sparse with the details. "We make a living by what we get, we make a life by what we give." --Winston Churchill
  • FOR XML EXPLICIT

    xml
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • Convert Excel to XML

    xml help question
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • XML file uploading

    com sysadmin xml tutorial
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • Table that spans multiple rows

    question
    2
    0 Votes
    2 Posts
    0 Views
    G
    Browsers don't have the print formatting capabilities to do that. You can only simulate it by creating multiple tables that approx. fit a printed paged. However, each model of priner may print your simulated formatting differently. George -- modified at 5:59 Tuesday 14th August, 2007 "We make a living by what we get, we make a life by what we give." --Winston Churchill
  • 0 Votes
    9 Posts
    0 Views
    R
    Yea I'm on this document already and still looking for some serious Output
  • XSL Transformation Query

    xml help database
    2
    0 Votes
    2 Posts
    0 Views
    G
    In order to get the second document into the XSLT process, you can pass the second document via a parameter from a source such as C# or VB.NET or you can load the second document via the XSLT "document" function. The you will have to write XSLT code to address your problem. -- modified at 15:28 Thursday 16th August, 2007 "We make a living by what we get, we make a life by what we give." --Winston Churchill
  • adding a & in text and element

    help
    5
    0 Votes
    5 Posts
    0 Views
    G
    It is also forbidden in other parts of the element name. "We make a living by what we get, we make a life by what we give." --Winston Churchill
  • (Another) XSLT - identity template - question [modified]

    xml wpf com regex question
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • how to create events for button in xslt

    xml help csharp asp-net sysadmin
    3
    0 Votes
    3 Posts
    0 Views
    R
    Its simple.. Add a attribute tag to your button and do this... Eg: document.location=' ' Hope this works.. Thanks & Regards, Gore
  • XSLT Question (Urgent please)

    xml tutorial question csharp javascript
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • Types of data ?

    xml question
    3
    0 Votes
    3 Posts
    0 Views
    Y
    Cheers Mike, Very useful.
  • xml value

    help xml
    6
    0 Votes
    6 Posts
    0 Views
    N
    u have to replace & with sth. that is allowed in plain html i think u should replace & with & for more info. http://www.html-reference.com/Escape.htm
  • Merge XML

    xml question
    7
    0 Votes
    7 Posts
    0 Views
    L
    That looks sweet, thanks. I am going to have to try some of that and see it in action!
  • CDATA and XSL

    question xml csharp
    2
    0 Votes
    2 Posts
    0 Views
    G
    AFAIK, when you transform an XML document using XSLT, CDATA sections and regular text are parsed together as one text item. However, you can parse CDATA sections and regular text separately using the XmlDocument class. Given the above information, you can use the Add Extension Object feature of the XsltArgumentList to achieve your purpose. IMHO, the below code is a bit overkill but it does the job. By the way, your second CDATA section will be transformed as text as and not an HTML element. To create a HTML element, you have to create it dynamically or statically in the XSLT code. using namespace System; using namespace System::IO; using namespace System::Text; using namespace System::Xml; using namespace System::Xml::XPath; using namespace System::Xml::Xsl; public ref class ParseCdata { public: