Hi and thanks for reading.

Is there a difference between these two formatting options for a text box in an XSLT documet:
VB Code:
  1. <INPUT TYPE="text">
  2.     <xsl:attribute name="id">
  3.         <xsl:text>txtLocation</xsl:text>
  4.     </xsl:attribute>
  5.     <xsl:attribute name="name">
  6.         <xsl:text>txtLocation</xsl:text>
  7.     </xsl:attribute>
  8. </INPUT>
VB Code:
  1. <INPUT TYPE="text" id="txtLocation" name="txtLocation">

They both seem to produce the same result!

OneSource