Click here to Skip to main content
15,908,834 members
Home / Discussions / XML / XSL
   

XML / XSL

 
GeneralRe: Who knows PHP ? Pin
Paul Watson7-Nov-02 2:20
sitebuilderPaul Watson7-Nov-02 2:20 
GeneralRe: Who knows PHP ? Pin
Christian Graus7-Nov-02 10:15
protectorChristian Graus7-Nov-02 10:15 
GeneralRe: Who knows PHP ? Pin
nrk11-Nov-02 7:12
nrk11-Nov-02 7:12 
GeneralRe: Who knows PHP ? Pin
Paul Watson11-Nov-02 21:13
sitebuilderPaul Watson11-Nov-02 21:13 
GeneralAssign DTD to XML Document Pin
Bash3-Nov-02 2:05
Bash3-Nov-02 2:05 
GeneralRe: Assign DTD to XML Document Pin
Stephane Rodriguez.3-Nov-02 2:19
Stephane Rodriguez.3-Nov-02 2:19 
GeneralRe: Assign DTD to XML Document Pin
Bash3-Nov-02 3:37
Bash3-Nov-02 3:37 
GeneralRe: Assign DTD to XML Document Pin
Stephane Rodriguez.3-Nov-02 4:09
Stephane Rodriguez.3-Nov-02 4:09 
Unfortunately, there is no way to do so using MSXML. That's probably why this SDK is now legacy and replaced by a much more powerful Xml stuff along with .NET.

You can achieve indentation by creating your own fake text nodes, with code like this :
var dom = new ActiveXObject("Microsoft.XMLDOM");
var root = dom.createElement("toto");
for (i = 0; i < 10; i++) {
    var formatting = dom.createTextNode("\n\t");
    root.appendChild(formatting);
    var child = dom.createElement(child);
    root.appendChild(child);
}
dom.save("output.xml");



Back to real work : D-27.
GeneralRe: Assign DTD to XML Document Pin
Bash3-Nov-02 18:52
Bash3-Nov-02 18:52 
General(XML4C) DOMParser constructor crash Pin
Ravi Bhavnani1-Nov-02 12:10
professionalRavi Bhavnani1-Nov-02 12:10 
GeneralRe: (XML4C) DOMParser constructor crash Pin
Michael A. Barnhart2-Nov-02 2:11
Michael A. Barnhart2-Nov-02 2:11 
GeneralRe: (XML4C) DOMParser constructor crash Pin
Ravi Bhavnani3-Nov-02 9:13
professionalRavi Bhavnani3-Nov-02 9:13 
GeneralRe: (XML4C) DOMParser constructor crash Pin
Michael A. Barnhart3-Nov-02 9:34
Michael A. Barnhart3-Nov-02 9:34 
GeneralRe: (XML4C) DOMParser constructor crash Pin
Ravi Bhavnani3-Nov-02 9:42
professionalRavi Bhavnani3-Nov-02 9:42 
GeneralXML Database on Client w/C# Pin
GregGacura31-Oct-02 12:37
sussGregGacura31-Oct-02 12:37 
Generalcalling all XML/XSL XPath gurus Pin
Marc Clifton31-Oct-02 9:37
mvaMarc Clifton31-Oct-02 9:37 
GeneralRe: calling all XML/XSL XPath gurus Pin
Christian Graus31-Oct-02 10:22
protectorChristian Graus31-Oct-02 10:22 
GeneralRe: calling all XML/XSL XPath gurus Pin
Marc Clifton31-Oct-02 10:26
mvaMarc Clifton31-Oct-02 10:26 
GeneralRe: calling all XML/XSL XPath gurus Pin
Christian Graus31-Oct-02 10:49
protectorChristian Graus31-Oct-02 10:49 
GeneralRe: calling all XML/XSL XPath gurus Pin
Michael Dunn31-Oct-02 13:58
sitebuilderMichael Dunn31-Oct-02 13:58 
GeneralForEx Data Pin
shane3931-Oct-02 8:27
shane3931-Oct-02 8:27 
GeneralRe: ForEx Data Pin
Ravi Bhavnani2-Nov-02 4:42
professionalRavi Bhavnani2-Nov-02 4:42 
GeneralXML & VC++ Pin
chepuri_uk29-Oct-02 18:12
chepuri_uk29-Oct-02 18:12 
GeneralRe: XML & VC++ Pin
ian mariano30-Oct-02 1:47
ian mariano30-Oct-02 1:47 
GeneralRe: XML & VC++ Pin
Stephane Rodriguez.30-Oct-02 1:53
Stephane Rodriguez.30-Oct-02 1:53 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.