Thanks for the answer,
I think there is a misunderstanding of what I need.
where did you refer to the <start> element, getting it's content, using post to pass that content to a webpage?
Main Topics
Browse All TopicsHi,
I have an XML file with an element in it <start>.
Using XSL, I would like to send the content of this element to a web page via post and display the returned result in a frame.
I'm a newbie in XSL, can you help me with that?
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
What is the mechanism for the post? Do you have a Web page and you are writing XML in a field on that page, then you hit submit?
Or are you using SOAP services, and you have a program which is doing an HTTP Post with your XML file?
What is the url you are posting to, and what is the xml you are sending?
Business Accounts
Answer for Membership
by: mrcoffee365Posted on 2009-11-05 at 22:02:20ID: 25756900
Most modern browsers (IE6+, Firefox) will display an HTML page for XML if the XML file refers to the XSL file.
TYPE xsl:stylesheet [ rg/1999/XS L/Transfor m" xmlns="http://www.w3.org/1 999/xhtml" > D XHTML 1.0 Transitional//EN" doctype-system="http://www .w3.org/TR /xhtml1/DT D/xhtml1-t ransitiona l.dtd"/>
sl/
So your iframe link in an html doc would look something like this:
<iframe src="myfile.xml"></iframe>
Then your xml file would refer to the xsl stylesheet:
<?xml version="1.0" encoding="ISO-8859-1"?>
<?xml-stylesheet type="text/xsl" href="mypage.xsl"?>
-- with rest of xml file here
Then your xsl file would have the display:
<?xml version="1.0" encoding="ISO-8859-1"?><!DOC
<!ENTITY nbsp " ">
<!ENTITY copy "©">
<!ENTITY reg "®">
<!ENTITY trade "™">
<!ENTITY mdash "—">
<!ENTITY ldquo "“">
<!ENTITY rdquo "”">
<!ENTITY pound "£">
<!ENTITY yen "¥">
<!ENTITY euro "€">
]>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.o
<xsl:output method="html" encoding="ISO-8859-1" doctype-public="-//W3C//DT
<xsl:template match="/">
<html>
<head>
and the rest of your xsl file is here with the rest of the html and references to your xml doc.
If you're new to this, you should go through one of the many online tutorials for XML and XSL. W3Schools has a good one:
http://www.w3schools.com/x