Wrox Programmer Forums
Go Back   Wrox Programmer Forums > XML > XSLT
|
XSLT General questions and answers about XSLT. For issues strictly specific to the book XSLT 1.1 Programmers Reference, please post to that forum instead.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the XSLT section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old October 6th, 2006, 11:16 AM
Registered User
 
Join Date: Oct 2006
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
Default Getting post/get parameters with XSLT?

I have a page that is styling XML with XSLT. I need to get parameters from an URL f.ex and use that parameter in the XSLT to decide wich element to display.

Lets assume this is my XML
Code:
<data>
  <content-one>
    <![CDATA[]]>
  </content-one>
  <content-two>
    <![CDATA[]]>
  </content-two>
</data>
If the url says web.com/?parameter=1 I wanna display <content-one> and if url says web.com/?parameter=2 I wanna display <content-two>

Is this possible?



 
Old October 6th, 2006, 11:32 AM
mhkay's Avatar
Wrox Author
 
Join Date: Apr 2004
Posts: 4,962
Thanks: 0
Thanked 292 Times in 287 Posts
Default

Yes it's possible but the details depend on what technology and what API you're using, for example on whether it's JSP pages, ASP.NET, or whetever. Basically you have to strip the query parameters off the URI in your application code and then pass them to the transformation engine via its API.

Michael Kay
http://www.saxonica.com/
Author, XSLT Programmer's Reference and XPath 2.0 Programmer's Reference
 
Old October 6th, 2006, 11:39 AM
Registered User
 
Join Date: Oct 2006
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
Default

Ok. Thanx, will try it out.






Similar Threads
Thread Thread Starter Forum Replies Last Post
Hints for a good XSLT post joefawcett XSLT 4 October 30th, 2017 03:23 AM
xslt with parameters Tomi XSLT 1 September 6th, 2006 05:40 AM
call to url while keep the form post parameters Goldwind Classic ASP Basics 0 December 25th, 2005 01:21 PM
Passing parameters from ASP (VBScript) to XSLT rj_mayer Classic ASP XML 5 January 25th, 2005 04:20 PM
Passing parameters to an XSLT kiril XSLT 1 May 15th, 2004 10:29 PM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.