This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Text Box Prob



The input to XSLT must be well-formed XML. XML requires that all attribute
values be quoted, and all elements be terminated. Rewrite your literal
element in XHTML -- change
     <INPUT maxLength=7 name=test size=14>
to
     <INPUT maxLength="7" name="test" size="14">
and be sure you have a </INPUT> after the <xsl:attribute> block.

______________________________________
Joe Kesselman  / IBM Research


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]