<?xml-stylesheet type="text/xsl" href="/xforms-tests/xsltforms/xsltforms.xsl"?>
<html xmlns:my="http://commerce.example.com/payment" xmlns:txs="http://sourceforge.net/projects/txs" xmlns="http://www.w3.org/1999/xhtml" xmlns:req="http://www.agencexml.com/requests" xmlns:xforms="http://www.w3.org/2002/xforms" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    <head>
        <title>11.1.u separator attribute of submission element</title>
        <xforms:model xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" id="form1">
            <xforms:submission action="http://www.agencexml.com/xforms-tests/xsltforms/echo.php" id="submit01" method="urlencoded-post"/>
            <xforms:submission action="http://www.agencexml.com/xforms-tests/xsltforms/echo.php" id="submit02" method="urlencoded-post" separator="&amp;"/>
            <xforms:instance xmlns="" id="instance1">
                <car>
                    <carOwner>Greg</carOwner>
                    <make>Toyota</make>
                    <color>Silver</color>
                </car>
            </xforms:instance>
        </xforms:model>
        <link href="../../driverPages/html/TestSuite11.css" rel="stylesheet"/>
    </head>
    <body>
        <xforms:group xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
            <xforms:label class="title">11.1.u separator attribute of submission element</xforms:label>
        </xforms:group>
        <xforms:group xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
            <xforms:label>
            	Both submit controls below replace this page with the form data. 
            	The instance data for this page is the values "carOwner=Greg", "make=Toyota" and 
            	"color=Silver". When you activate the Separate With ';' control you must see the instance 
            	data values separated by semicolons(;) on the page. 
            	When you activate the Separate With '&amp;' control you must see the instance 
            	data values separated by ampersands(&amp;) on the page. 
			</xforms:label>
        </xforms:group>
        <xforms:submit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" submission="submit01">
            <xforms:label>Separate With ';'</xforms:label>
        </xforms:submit>
        <xforms:submit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" submission="submit02">
            <xforms:label>Separate With '&amp;'</xforms:label>
        </xforms:submit>
        
    </body>
</html>
