by Hido Hasimbegovic >> Sun, 29 Oct 2000 23:51:37 GMT
Robert's suggestion might be worth a try. I had a similar problem with XSL transformation of an XML file.
For example, XML had an element with attribute called "serverPath" and value http://127.0.0.1/jade/jadehttp.dll?MyApp) . XSL translates XML document to HTML and inserts serverPath attribute as ACTION attribute of FORM element. XSL for some reason clips anything after the ? mark in serverPath off, so that my ACTION becomes http://127.0.0.1/jade/jadehttp.dll?- sans pipe name!. This obviously didn't work, so what I had to do is embed the pipe name as a hidden field inside the form. Eg. <FIELD TYPE="HIDDEN" NAME="MyApp" VALUE="">. Clumsy, maybe, but it works great.