Hi,
we have an application where
JSP's sending a form data to the database.
Form data validation is done on Javascript in the client side.
Everything is working fine so far.
My manager came up with a new requirement to upload and download files through the JSP's to the Oracle Database.
In form section
Previously...
<form name="ReportForm" method="POST" onSubmit="CheckFields();"
.......
.....
</form>
NOW
<form name="ReportForm" method="POST" onSubmit="CheckFields(); enctype="multipart/form-data">
.......
.....
</form>
When i put "enctype="multipart/form-data" i am getting sql exception
Exception: java.sql.SQLException: ORA-01858: a non-numeric character was found where a numeric was expected
So,my question is that....what is the effect of form data when use
enctype="multipart/form-data"?
Thanks!