Man kan väl skapa DOMDocument med asp? Dim xmlDoc
DOMDocument
Svara
Men hur skriver man asp kod som motsvarar nedanstående?
Dim xmlDoc As New DOMDocument
Dim xmlNode As IXMLDOMElement
Set xmlNode = xmlDoc.createElement("Question")
\Leif P
Sv: DOMDocument
Svara
Dim xmlNode
Set xmlDoc = Server.CreateObject("MSXML.DOMDocument")
Set xmlNode = xmlDoc.createElement("Question")
/johan/