Hvordan får man doctype til at virke med MSXML parser ?
Hvordan får man doctype til at virke med MSXML parser.Det som jeg skal have tilføjet er følgende :
<!doctype content [
<!entity nbsp \" \">
]>
Jeg bruger nedenstående kode :
Set objXML = Server.CreateObject(\"MSXML2.DOMDocument.3.0\")
Set objXSL = Server.CreateObject(\"MSXML2.DOMDocument.3.0\")
objXML.ValidateOnParse = True
objXSL.ValidateOnParse = True
strXMLDocument = \"<?xml version=\"\"1.0\"\" encoding=\"\"iso-8859-1\"\"?>\" & vbCRLF
strXMLDocument = strXMLDocument & \"<content>\" & vbCRLF
strXMLDocument = strXMLDocument & strDocument & vbCRLF
strXMLDocument = strXMLDocument & \"</content>\" & vbCRLF
objXML.loadXML strXMLDocument
If objXML.parseError.errorCode <> 0 Then
\'error found so show error message and stop
oFunction.ShowError objXML
Response.End
End If
objXSL.load server.mappath(\"1.xsl\")
If objXSL.parseError.errorCode <> 0 Then
\'error found so show error message and stop
oFunction.ShowError objXSL
Response.End
End If
strResult = objXML.transformNode(objXSL)
Response.Write strResult