I found out the reason why. The Upload code contains Request.BinaryRead which causes an error subsequently if we use request.form.
Now anyone knows how to solve it?
line 86 <% Response.Write request.form("qty")%>
previous page submission:
<input type="text" name="qty">
This is the BinaryRead in the current file above line 86
<%
Response.Buffer = True
' load object
Dim load
Set load = new Loader
' calling...
what is wrong and how do I solve it?
Error Type:
Request object, ASP 0207 (0x80004005)
Cannot use Request.Form collection after calling BinaryRead.
/cs/insert.asp, line 86
I can't get this script to work, what went wrong?
<script>
function check(){
if(form1.textfield.value==""){
alert("Fill it in");
}
else{
form1.submit();
}
}
</script>
<form name="form1" method="post" action="another.asp">
<input...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.