Michael

Try something like this...


<%


Dim objXMLDOM
Set objXMLDOM = Server.CreateObject("Microsoft.XMLDOM")

'load the widget.xml document
objXMLDOM.load(Server.MapPath("widget.xml"))

  for each objChild in objXMLDOM.documentElement.childNodes
    Response.write objChild.NodeName & " - "
    response.write objChild.Text & "<BR>"
  next

%>



-----Original Message-----
From: Paul Johnston [mailto:[EMAIL PROTECTED]]
Sent: Monday, June 04, 2001 4:47 AM
To: CF-Talk
Subject: Re: html as xml for asp :)


If you're using ASP, why not use the MSXML object directly?

Have a look at CF_SOXML and reverse engineer (it's really not that hard!).

I hope you are successful.

Paul
-----Original Message-----
From: Michael Lugassy <[EMAIL PROTECTED]>
To: CF-Talk <[EMAIL PROTECTED]>
Date: 03 June 2001 14:10
Subject: OT: html as xml for asp :)


>I'm trying to locate a code or object that will easily
>convert/create xml document from asp structre or variable.
>something easy like the CF_SOXML tag, just for ASP.
>
>Thanks,
>
>Michael.
>
>
>
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to