Subject: Re: how to access values of dropdown list created in .html filewith Saxon
From: Mike Brown <mike@xxxxxxxx>
Date: Sun, 19 May 2002 15:52:18 -0600 (MDT)
|
dmitri kerievsky wrote:
> When using Saxon to create an output.html file with a dropdown list
> list (result below), how can the values of the dropdown list be accessed
> through code?
>
> <?xml version="1.0" encoding="utf-8"?><SELECT
> xmlns:saxon="http://icl.com/saxon"
> name="paglassociates/pagl/state"><out><distinct-states>:
>
>
> <OPTION>CA</OPTION><OPTION>CT</OPTION><OPTION>ID</OPTION><OPTION>IL</OPTION>
> <OPTION>MT</OPTION><OPTION>NJ</OPTION><OPTION>NY</OPTION><OPTION>WA</OPTION>
> </distinct-states></out></SELECT>
You did not generate HTML, you generated XML.
Add <xsl:output method="html"/> to your stylesheet, before the first template.
What do you mean 'accessed through code'? What code?
The typical usage of XSLT, when generating HTML, is to generate a complete
HTML document, not just a little fragment like this. Then you put that
document somewhere where it can be accessed by a web browser. :)
- Mike
____________________________________________________________________________
mike j. brown | xml/xslt: http://skew.org/xml/
denver/boulder, colorado, usa | resume: http://skew.org/~mike/resume/
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
| Current Thread |
|
Michael Kay - Sun, 19 May 2002 02:51:24 -0400 (EDT)
|
|