Hi there,
I have a form as below
<form enctype="multipart/form-data" action="file1.asp">
<input type="text" name="text1">
<input type="file" name="file1">
</form>
In the file1.asp I used
Request("text1". It should return the value typed in the text box. But it is returning empty value for that.
But if I use
<form action="file1.asp">
<input type="text" name="text1">
<input type="file" name="file1">
</form>
then it works fine.
Any help in this will be highly appreciated.
Thanks and regards,
Hameed
Hong Kong
I have a form as below
<form enctype="multipart/form-data" action="file1.asp">
<input type="text" name="text1">
<input type="file" name="file1">
</form>
In the file1.asp I used
Request("text1". It should return the value typed in the text box. But it is returning empty value for that.
But if I use
<form action="file1.asp">
<input type="text" name="text1">
<input type="file" name="file1">
</form>
then it works fine.
Any help in this will be highly appreciated.
Thanks and regards,
Hameed
Hong Kong