L
Larry Lindstrom
Hello Experts:
I'm learning XML, and I don't understand how to
make this work.
The user sees a grid of radio buttons and labels.
The XSL file has an <html> table of the following:
<td>
<input type="radio"
name="SELECTED_PRODUCT_CODE"
value="<xsl:value-of select='product_code'/>"
/>
<xsl:value-of select="product_name"/>
</td>
As I'm sure is obvious to all of you, Mozilla
complains about the value= statement.
XML Parsing Error: not well-formed
value="<xsl:value-of select='product_code'/>"
----------------------^
Internet Explorer is not as specific, but it
also fails.
I've tried several variations on the above.
I've looked at Google archivesbut, but I can't
compose a query that will find what I need.
I can't figure out what I'm doing wrong.
This is a little self education, my goal for
today is to get the selected product code back
to the server.
Thanks
I'm learning XML, and I don't understand how to
make this work.
The user sees a grid of radio buttons and labels.
The XSL file has an <html> table of the following:
<td>
<input type="radio"
name="SELECTED_PRODUCT_CODE"
value="<xsl:value-of select='product_code'/>"
/>
<xsl:value-of select="product_name"/>
</td>
As I'm sure is obvious to all of you, Mozilla
complains about the value= statement.
XML Parsing Error: not well-formed
value="<xsl:value-of select='product_code'/>"
----------------------^
Internet Explorer is not as specific, but it
also fails.
I've tried several variations on the above.
I've looked at Google archivesbut, but I can't
compose a query that will find what I need.
I can't figure out what I'm doing wrong.
This is a little self education, my goal for
today is to get the selected product code back
to the server.
Thanks