Hello,
I have 2 different issues, which are listed below
(1) To upload a file , is it necessary to specify the
enctype="multipart/form-data". Can Struts handle file upload in another way
when the enctype has not been specified.
(2)
<script>
function validateDelete()
{
return confirm("Delete Data");
}
</script>
<html:link action="deleteData" name="deleteDataParams" scope="page"
onclick="return validateDelete()" >
Delete Data
</html:link>
To the validateDelete() Javascript function, I want to pass a java
variable. How do I do it?
Once I pass the variable, my javascript function has to be :
<script>
function validateDelete(data)
{
return confirm("Delete Data"+data);
}
</script>