RE: [xsl] xslt problems with IE5.5 - the example

Subject: RE: [xsl] xslt problems with IE5.5 - the example
From: "Eyal Shneider" <Eyal@xxxxxxxxxxxx>
Date: Fri, 26 Jan 2001 11:29:07 +0200
This is exactly the XSL that fails on IE5.5 to upload the file :
(As u can see, everything is static in it)

<?xml version="1.0" ?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform";
version="1.0">
<xsl:template match="/">
<HTML>
	<BODY>
		<FORM NAME="uploadForm" METHOD="post" ACTION="..\servlet\CmpReciever"
ENCTYPE="multipart/form-data">
			<P><INPUT id="file1" name="file1" type="file"/></P>
			<P><INPUT id="submit1" name="submit1" type="submit" value="Submit"/></P>
		</FORM>
	</BODY>
</HTML>
</xsl:template>
</xsl:stylesheet>

And this is the HTML output that IE5.5 produces for the XSL, that DOES work,
misteriously...

<HTML>
<BODY>
<FORM NAME="uploadForm" METHOD="post" ACTION="..\servlet\CmpReciever"
ENCTYPE="multipart/form-data">
<P><INPUT id="file1" name="file1" type="file"></P>
<P><INPUT id="submit1" name="submit1" type="submit" value="Submit"></P>
</FORM>
</BODY>
</HTML>

I hope u find something wrong in it... I suspect that I'm dealing with a
IE5.5 bug...
Thanks!

-----Original Message-----
From: owner-xsl-list@xxxxxxxxxxxxxxxxxxxxxx
[mailto:owner-xsl-list@xxxxxxxxxxxxxxxxxxxxxx]On Behalf Of Mike Brown
Sent: Thursday, January 25, 2001 12:11 AM
To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
Subject: Re: [xsl] xslt problems with IE5.5


Eyal Shneider wrote:
> My XSL file contains a file chooser to allow file uploading.
> When I double click the XML file, and the page appears, the sumbit
operation
> FAILS to upload the file.
> However, when I get the HTML generated directly from i.e(using "view xsl
> output"), create an HTML file with it,
> and run it,the file upload is performed successfuly...

Post, or post a pointer to, your XSL and XML. I have a feeling it has
something to do with either where you are submitting the form to, or
something else in your XSL. Also, are you using MSXML 3.0?
http://www.netcrucible.com/xslt/msxml-faq.htm if you aren't sure what I
mean.

   - Mike
____________________________________________________________________
Mike J. Brown, software engineer at            My XML/XSL resources:
webb.net in Denver, Colorado, USA              http://skew.org/xml/


 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