juanferman
Programmer
I have this form:
<form method="post" name="form" ENCTYPE="multipart/form-data" action="save.asp">
<INPUT type="hidden" name="Name" value="peter">
<input type="file" name="Imagen" size="40">
</form>
And the save.asp is:
<%
response.write request.form("Name"
%>
But does not works. Does no print anything.
Any body of you knows WHY ?
Thanks in advance
===================
: Juan F. Sarria
<form method="post" name="form" ENCTYPE="multipart/form-data" action="save.asp">
<INPUT type="hidden" name="Name" value="peter">
<input type="file" name="Imagen" size="40">
</form>
And the save.asp is:
<%
response.write request.form("Name"
%>
But does not works. Does no print anything.
Any body of you knows WHY ?
Thanks in advance
===================
: Juan F. Sarria