Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to submit an ASP form with XML elements in it?

Status
Not open for further replies.

vfvandijk

Technical User
Dec 22, 2005
1
NL
It looks like a simple question, but to me it's like one of those Escher paintings:

How to submit an ASP form with XML elements in it WHEN the XML is handled by the SAME ASP form?

It's a wonderful solution in itself, provided by Ken Cox making internationalization of forms possible. But the XML is handled by the ASP form itself on clicking OK, submitting the form to itself. Of course, I love this feature, but would also like to be able to submit the user written content and handle it as any regular asp form. How to do this?

Yes, I tried to contact Ken but still didn't receive a reply.

Kind regards,

Victor van Dijk
Nobel Films
 
Does this help?

<%
Dim oXMLDocument
Set oXMLDocument = CreateObject("msxml2.domdocument.4.0")
oXMLDocument.LoadXML Request("fieldxml")

Dim sXML
sXML = oXMLDocument.xml
MsgBox "The XML Captured by fieldxml is: " & sXML
%>



------------------------
Hit any User to continue
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top