RE: CFOBJECT & Sessions

2000-10-17 Thread DeVoil, Nick
hanks Nick -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 17, 2000 2:15 AM To: '[EMAIL PROTECTED]' Cc: '[EMAIL PROTECTED]' Subject: RE: CFOBJECT & Sessions > I'm using a COM object to parse an XML doc: > >

RE: CFOBJECT & Sessions

2000-10-16 Thread Dave Watts
> I'm using a COM object to parse an XML doc: > >name="xmlDoc"> > > That works fine as long as I only have one page. > > But once I've loaded the document, I want to keep it in memory > across pages. I put it in a session variable: > > Session.xmlDoc = xmlDoc; > > and in the next page,

RE: CFOBJECT & Sessions

2000-10-06 Thread Paul Johnston
You could put all of the properties you want into a structure and then copy the structure into the session variable. Have a look at CF_XMLPARSE on http://www.siteobjects.com/index.cfm?fuseAction=showProducts for a really good XML tag that puts a document into a structure. Paul > -Original M