Hi and thanks for reading.
Is there a difference between these two formatting options for a text box in an XSLT documet:
VB Code:
<INPUT TYPE="text"> <xsl:attribute name="id"> <xsl:text>txtLocation</xsl:text> </xsl:attribute> <xsl:attribute name="name"> <xsl:text>txtLocation</xsl:text> </xsl:attribute> </INPUT>VB Code:
<INPUT TYPE="text" id="txtLocation" name="txtLocation">
They both seem to produce the same result!![]()
OneSource




Reply With Quote