Subject: Text Box Prob
From: "Joseph Kesselman" <keshlam@xxxxxxxxxx>
Date: Wed, 5 Sep 2001 15:40:35 -0400
|
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
| Current Thread |
- RE: Text Box Prob
- Hewko, Doug - Wed, 5 Sep 2001 13:02:10 -0400 (EDT)
- <Possible follow-ups>
- Joseph Kesselman - Wed, 5 Sep 2001 15:49:05 -0400 (EDT) <=
- P Vikram - Wed, 5 Sep 2001 18:00:20 -0400 (EDT)
|
|