Guest_imported
New member
- Jan 1, 1970
- 0
Hy, i have got a questions:
1.)How can i insert a Doctype statement in a XMLDOM-Object. I use the personalWeb Server and ASP with vbscript, for example following code:
'Instantiate the Microsoft XMLDOM.
Set objDom = Server.CreateObject("Microsoft.XMLDOM"
'Create the xml processing instruction.
set objPI =
objDom.createProcessingInstruction"xml", "version='1.0'"
-> but i can't find something for the "Doctype"-Statement
When i use a CDATASection, in the xml-file you can find the entry:
<![CDATA[<!Doctype jv_flojek System test.dtd>]]>
and this is not what i want
I hope anybody could help me
Regards, Jan
1.)How can i insert a Doctype statement in a XMLDOM-Object. I use the personalWeb Server and ASP with vbscript, for example following code:
'Instantiate the Microsoft XMLDOM.
Set objDom = Server.CreateObject("Microsoft.XMLDOM"
'Create the xml processing instruction.
set objPI =
objDom.createProcessingInstruction"xml", "version='1.0'"
-> but i can't find something for the "Doctype"-Statement
When i use a CDATASection, in the xml-file you can find the entry:
<![CDATA[<!Doctype jv_flojek System test.dtd>]]>
and this is not what i want
I hope anybody could help me
Regards, Jan