Hi There,
i've implemented an Ajax FileUpload using struts 2.0.9. Works fine and
(since my last mail to this list) redirects to a result jsp.
But the Browser only shows [object HTMLDocument] inside the "targets"
div instead of the result page.
My Code.
....
<s:form action="uploadPicture.action" method="POST"
enctype="multipart/form-data">
File(1): <s:file name="upload" accept="image/*"/><br>
File (2): <s:file name="upload" accept="image/*"/><br>
File (3): <s:file name="upload" accept="image/*"/><br>
<s:a theme="ajax" targets="aTargetDiv"
executeScripts="false" >upload</s:a>
</s:form>
....
<s:div id="aTargetDiv">
</s:div>
.....
xml config:
<action name="uploadPicture" class="actions.UploadPictureAction"
method="upload">
<result name="input">uploadPictureForm.jsp</result>
<result>viewUploadResult.jsp</result>
</action>
result page:
...
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>View Result</title>
</head>
<body>
<br>
upload finished
<br>
</body>
</html>
Thanks a lot for any help,
Jan
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]