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]

XSL problem


> I've just started using the xalan.jar & xerces.jar files for XSL
> processing.
> 
> I haven't been able to implement xsl:variable in my xsl files.  Xalan
> reports that it is out of context or not defined.  
> 
> Has anyone been successful using this yet?  Or do you know how I might go
> about setting the value on an <input> tag using xml/xsl?
> 
> 
> Sample XSL Code: rdate is the variable name
> ====================================================
> <?xml version='1.0'?>
> <xsl:stylesheet
>        xmlns:xsl="http://www.w3.org/TR/WD-xsl"
>        xmlns="http://www.w3.org/TR/REC-html40"
>        result-ns="">
> 
> <xsl:template match="/">       
> 
> <html>
> <title>Test</title>
> <body>
> 
> <xsl:variable name="rdate">
> 	02/02/2000
> </xsl:variable>
> 
> <form>
> <center>
> <table>
> <tr>
> <td valign="middle" align="right"><b>Date: </b></td>
> <td valign="middle" align="left">
> <input type="text" name="rdate" size="10" value="{$rdate}"></input>
> </td>
> ...
> =====================================================
> 
> 
> Thanks
> Tom
> 
> 
> 


 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]