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
  • open two XmlDocuments at same time

    question xml
    6
    0 Votes
    6 Posts
    4 Views
    A
    :-Oyou are right again - the XML was not valid thanks and regards:-O
  • ASP.NET, C#, XML GHETTO STEEZ

    csharp asp-net xml help question
    1
    0 Votes
    1 Posts
    1 Views
    No one has replied
  • Good place to start

    com xml question learning
    3
    0 Votes
    3 Posts
    2 Views
    M
    I have always thought Roger Costello's XFront[^]site to be good, although focusing on schemas and XSLT. I have also book marked: http://www.rpbourret.com/index.htm[^] http://www.xmlmodeling.com/[^] ""
  • Convert Word to XML?

    csharp asp-net xml help question
    5
    0 Votes
    5 Posts
    2 Views
    P
    i guess thats why they are spelt different ;P "When the only tool you have is a hammer, a sore thumb you will have."
  • Tutorials XML

    com xml
    1
    0 Votes
    1 Posts
    1 Views
    No one has replied
  • XML not rendering properly in IE5.0

    xml help
    2
    0 Votes
    2 Posts
    2 Views
    S
    IE5.5 and IE6 have different XSLT engines.
  • FLASH 5

    com adobe game-dev help question
    2
    0 Votes
    2 Posts
    2 Views
    P
    wrong section. "When the only tool you have is a hammer, a sore thumb you will have."
  • XML parser generators?

    c++ html xml help question
    7
    0 Votes
    7 Posts
    9 Views
    A
    XML Data Binding tools provide this, but you need to describe your xml in a schema (xsd/xdr/dtd). http://www.rpbourret.com/xml/XMLDataBinding.htm lists available tools. I use the wizard from Liquid Technologies: http://www.liquid-technologies.com/Products/LXDBWizard.htm
  • Can I split a huge C# class across multiple files

    csharp
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • XML/XSL Standards and .NET

    xml csharp json question
    3
    0 Votes
    3 Posts
    0 Views
    J
    Thanks :)
  • 0 Votes
    2 Posts
    0 Views
    P
    this wont work because you are reading the source for the apsx, i.e. you are getting back the <% aspx stuff %> you need to load the xml from using a uri, not from the file system "When the only tool you have is a hammer, a sore thumb you will have."
  • MSXML 3 and escape sequences

    xml help question html database
    2
    0 Votes
    2 Posts
    1 Views
    P
    this is a classic problem - you will run into it all the time. the important point is that £ is resolved by the parser, i.e. by the time you get a look in it has been converted to its character. generally these issues are caused by the encoding attribute that is specified at the top of your xml   <?xml version="1.0" encoding="ISO-8859-1" ?> People have a nasty habit of sticking any old encoding in here, without considering what encoding they are using - for example different versions of windows (95, 98, NT) have used different encoding schemes. Also be careful if you use XSLT - you have to tell it how to output it   <xsl:output encoding="iso-8859-1"/>. Otherwise you will end up in a world of pain ;) my general advice is to always replace any characters with values below 32 and above 128 with a tag - this allows you to handle the problem. consider using a <character code="163"/> tag, this way you can do what you like. hope this helps. "When the only tool you have is a hammer, a sore thumb you will have."
  • Converting XML to HTML

    xml help csharp html
    3
    0 Votes
    3 Posts
    0 Views
    J
    MS le Roux wrote: And yet you're referencing "C:\test\MyXSLFile.xsl"? Isn't that your seperate stylesheet? I should have been clearer on that. The separate stylesheet does exist, but I don't see why I have to go to the trouble of loading it if it's already referenced in the XML. IE can pick it up directly from the link in the XML, so why not .NET? However, from my research and some replies I've received, I don't think the XML classes in .NET can pick up an 'embedded' stylesheet like this, so I'll have to just load it separately anyway. Just trying the lazy approach! :zzz: John. www.silveronion.com[^]
  • 0 Votes
    1 Posts
    0 Views
    No one has replied
  • XML contents for my previous question

    xml question
    2
    0 Votes
    2 Posts
    0 Views
    M
    Just go back and edit your message. Make sure to check the display message as-is (no HTML). Here is text "Sig"
  • XML contents for my previous question

    xml question
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • XPath Doubt

    xml csharp help tutorial question
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • How to do XML file modifications?

    xml tutorial question
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • C# / XML attributes and values

    csharp xml help tutorial
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • Find Element

    xml javascript database question
    2
    0 Votes
    2 Posts
    0 Views
    Richard DeemingR
    Try something like: XmlNode node = doc.SelectSingleNode("/Airports/Airport[ICAO='KABE']/Long"); double lon = double.Parse(node.InnerText); "These people looked deep within my soul and assigned me a number based on the order in which I joined." - Homer