[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

RE: URL variables

Subject: RE: URL variables
From: "Crowers, Steve" <scrowers@xxxxxxxxxxxx>
Date: Thu, 16 Aug 2001 12:30:00 -0400
html get url variable
You're close.  The param statement you have will get the value of the
parameter passed in during the XSLT invocation or [I think] the current node
tree.  Instead simply use:

    <xsl:parameter name="id" select=""/>

and make sure that when you invoke the transformer (I'm assuming that you're
using a servlet,) that you pass in the parameter.

using Xalan-J, it would look something like:

    Transformer.setParameter("id", request.getParameterValues("id")[0]);


HTH

Steve Crowers 
Software Engineer 


Liberate Technologies 
2 Walnut Grove, 
Suite 200 
Horsham, PA 19044 
Phone: 215-773-9400 x 9514 
Fax: 215-773-9401 
scrowers@xxxxxxxxxxxx 
http://www.liberate.com 

 

"The good Lord sets definite limits on man's wisdom but sets no limits on
his stupidity -- and that's just not fair." --Konrad Adenauer, German
Chancellor 



-----Original Message-----
From: John Bougie [mailto:jbougie@xxxxxxxxxx]
Sent: Thursday, August 16, 2001 11:57 AM
To: XSL-List@xxxxxxxxxxxxxxxxxxxxxx
Subject:  URL variables


Hi,

I am trying to do something sounds really simple but can't seem to get
it going.  Here is what I am doing.  I have a HTML form that looks something
like this:

<html>
   <body>
      <form method="get" action="testPage">
         <table>
            <tr>
               <td>ID# :</td>
               <td><input type="text" name="id1" value=""></input></td>
               <td>
                  <input type="submit" value="Submit Query"
name="submit"></input>
            </tr>
         </table>
      </form>
   </body>
</html>

That will post and call and xsl file with a URL that looks like this:

https://localhost/testPage?id1=A&submit=Submit+Query

In the full version of the file, not the trimmed down one above the page
get called with the proper URL and is rendered, for the most part fine.

What I want to do in the XSL sheet that is not working is print the value
of ID which is in the URL.  This is an abbreviated version of the XSL
sheet:

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0">
   <xsl:output method="html"/>

      <xsl:param name="id" select="."/>

      <html>
         <body>
            THE ID ENTERED IS :  <xsl:value-of select="$id"/>
         </body>
       </html>
   </xsl:output>
</xsl:stylesheet>

It was my understanding that in order to get a variable from the URL
you need to do a <xsl:param name="id" select="."/> before your first
template call and then inside a template to access it (i.e. print the
value) you would need to do a <xsl:value-of select="$id"/>.  Can anyone
tell me if I am one the right track, or am I way off the mark.

Thanks
John


	

__________________________________________________
FREE voicemail, email, and fax...all in one place.
Sign Up Now! http://www.onebox.com


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

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


Current Thread
  • URL variables
    • John Bougie - Thu, 16 Aug 2001 12:05:44 -0400 (EDT)
      • Jeni Tennison - Thu, 16 Aug 2001 12:40:37 -0400 (EDT)
      • Carlos - Fri, 17 Aug 2001 09:33:48 -0400 (EDT)
      • <Possible follow-ups>
      • Crowers, Steve - Thu, 16 Aug 2001 12:42:08 -0400 (EDT) <=

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.