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

RE: passing params using asp into wml

Subject: RE: passing params using asp into wml
From: "Chris Bayes" <Chris@xxxxxxxxxxx>
Date: Tue, 10 Apr 2001 13:15:49 +0100
RE:  passing params using asp into wml
Andrew,
<% Response.Buffer=True %>
<%
stop
   Dim xml
   Dim xsl
   Dim template
   Dim processor

   Set xml = Server.CreateObject("MSXML2.DOMDocument.3.0")
   xml.async = false
   xml.load (Server.MapPath("test.xml"))

   Set xsl = Server.CreateObject("MSXML2.FreeThreadedDOMDocument")
   xsl.async = false
   xsl.load (Server.MapPath("test.xsl"))

   Set template = Server.CreateObject("MSXML2.XSLTemplate")
   template.stylesheet = xsl
   set processor = template.createProcessor  ' <-********************line 18

   processor.input = xml
   processor.addParameter "param1",Request.QueryString("param1").item
   processor.transform()

   Response.ContentType = "text/vnd.wap.wml"
   Response.Write "<?xml version=""1.0"" ?>"
   Response.Write "<!DOCTYPE wml PUBLIC ""-//WAPFORUM//DTD " & _
                  "WML
1.1//EN""""http://www.wapforum.org/DTD/wml_1.1.xml"">"

   Response.write (processor.output)
%>

XML/XSL Portal
http://www.bayes.co.uk/xml


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


Current Thread

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.