I currently have the following:
[code]
<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl">
<xsl:template match="/">
<HTML><HEAD><TITLE>XSL-Formatted ADO
Recordset</TITLE></HEAD>
<BODY><FONT FACE="Tahoma" size="2">
<TABLE border="1" COLOR="BLUE">
<TR>
<xsl:for-each
select="*/s:Schema/s:ElementType/s:AttributeType">
<TD><STRONG><FONT COLOR="RED" size="2">
<xsl:value-of select="@name"/></FONT></STRONG></TD>
</xsl:for-each>
</TR>
<xsl:for-each select="*/rs:data/z:row">
<TR>
<xsl:for-each select="@*">
<TD>
<input type="text">
<xsl:attribute name="HospitalID"><xsl:value-of
select="@HospitalID"/></xsl:attribute>
</input>
<FONT COLOR="BLUE" size="2"><xsl:value-
of/></FONT></TD>
</xsl:for-each>
</TR>
</xsl:for-each>
</TABLE>
</FONT></BODY></HTML>
</xsl:template>
</xsl:stylesheet>
[/code]
THis works quite well, but I need to have a submit button on the
first element of each table row. The element name is HospitalID.
Where can I find out how to do this?
Robert Farmer
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list