I have a form which was developed in a product called mandoforms. Its half devleoped and now the client wants the form in CFMX. The form exists as an XML file. Is there anyway I can get the form into html / cfmx? I can load it into dreamweaver and see all the tag stuff but of course it means very little to me ...
Do a CFFILE or CFHTTP (however the form is to be retrieved) then use the XML functions in CFMX.
XMLParse(document_string)
will return a CFMX XML document.
Then you can use XMLSearch to retrieve bits of the XML file to build a Form *or* XMLTransform with a valid XSLT to transform it into an (X)HTML form.
HTH
Paul
-- ** Archive: http://www.mail-archive.com/dev%40lists.cfdeveloper.co.uk/
To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] For human help, e-mail: [EMAIL PROTECTED]
