Not quite sure I understand the first bit,
Quote:
|
quote:I have an xslt stylsheet which submits a form to an asp
|
as an xslt form can't submit anything, did you mean xhtml fiorm?
For the second part it depends on which xslt processor you are using. If msxml I suggest you get sdk helpfile from:
http://www.microsoft.com/downloads/d...displaylang=en
Basically there are two methods, both need you to have an xsl:param element in your stylesheet to accept the variable. The official method is called addParameter and you need to create axslt template and processor, plenty of examples in the sdk. The other method is to open the stylesheet via dom and select the param node. Add your Request.Querystring argument and then use the modified styleshhet to carry out the final transform. If you are doing lots of these use method one, for only a few the second is easier.
Joe (MVP - xml)