<div>Hi,</div>
<div>&nbsp;</div>
<div>I am having a problem with WAUploadTest in IE6 and IE7 (it works fine in Firefox).</div>
<div>The browse button works fine but upon pressing the submit button the browser goes to the default &#39;The page cannot be display&#39; webpage.</div>
<div>The file is able to be passed to a&nbsp;Smalltalk&nbsp;variable but then (I&#39;m guessing)&nbsp;the render falls over as it doesn&#39;t seem to be passed an action and I guess doesn&#39;t know what to do?&nbsp; Does anyone have a solution?
</div>
<div>&nbsp;</div>
<div>WAUploadTest:</div>
<div>renderContentOn: html<br>&nbsp;html heading: &#39;Upload File&#39;.<br>&nbsp;<br>&nbsp;html attributeAt: &#39;enctype&#39; put: &#39;multipart/form-data&#39;.<br>&nbsp;html form: [<br>&nbsp;&nbsp;html fileUploadWithCallback: [:f | file := f].<br>
&nbsp;&nbsp;html submitButton.<br>&nbsp;].</div>
<p>&nbsp;file ifNotNil:<br>&nbsp;&nbsp;[html anchorWithDocument: file contents mimeType: file contentType fileName: file fileName text:file fileName.<br>&nbsp;&nbsp;html preformatted: file contents contents].</p>