Galera, tenho uma jsp com a tag
Aguém pode ajudar??
Segue JSP:
<%@ taglib uri="http://struts.apache.org/tags-bean" prefix="bean" %>
<%@ taglib uri="http://struts.apache.org/tags-html" prefix="html" %>
<html>
<head>
<title>Upload de arquivo</title>
</head>
<body>
<html:form action="upload.do?action=baixarArquivo" enctype="multipart/form- data">
<html:file property="file" styleId="file" alt="Selecione um arquivo." ></html:file>
<br><br>
<html:submit value="Confirmar"></html:submit>
</html:form>
</body>
</html>
Segue Bloco em Struts(Caso ajude):
<action path="/upload.do"
[quote]type="br.com.upload.action.UploadAction"
name="uploadArquivoForm"
scope="request"
validate="false"
parameter="action">
<forward name="confirmar" path="/pages/upload.jsp" />
</action>
Obrigado...Gabriel.