D
DrNASA
I want to submit my form to an ASP (not ASP.NET) page.
I have configured the Submit settings to point to the correct ASP page and
have configured the Submit settings to use Web Site (HTTP)
Looking at the help file for InfoPath:
http://office.microsoft.com/en-us/assistance/HA011444861033.aspx
it says that InfoPath sends the form an XML data using HTTP POST request.
I need help referencing the posted XML data in the ASP page.
Does anybody know how to do that?
Anytime I use ASP to refernece an existing XML document, I use this code:
*********************
Dim objXML
Set objXML = Server.CreateObject("microsoft.XMLDOM")
objXML.Load (Server.MapPath("Template1.xml"))
*********************
where Template1 would be the XML file.
Would this work? Would I just use the formname.xml or can I just use a
Request("object") instead of the code above?
Thanks
I have configured the Submit settings to point to the correct ASP page and
have configured the Submit settings to use Web Site (HTTP)
Looking at the help file for InfoPath:
http://office.microsoft.com/en-us/assistance/HA011444861033.aspx
it says that InfoPath sends the form an XML data using HTTP POST request.
I need help referencing the posted XML data in the ASP page.
Does anybody know how to do that?
Anytime I use ASP to refernece an existing XML document, I use this code:
*********************
Dim objXML
Set objXML = Server.CreateObject("microsoft.XMLDOM")
objXML.Load (Server.MapPath("Template1.xml"))
*********************
where Template1 would be the XML file.
Would this work? Would I just use the formname.xml or can I just use a
Request("object") instead of the code above?
Thanks