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 initialize method
load.initialize
' File binary data
Dim fileData
fileData = load.getFileData("file"

' File name
Dim fileName
fileName = LCase(load.getFileName("file"

)
' File path complete
Dim filePathComplete
filePathComplete = load.getFilePathComplete("file"

' File size
Dim fileSizeTranslated
fileSizeTranslated = load.getFileSizeTranslated("file"

' Content Type
Dim contentType
contentType = load.getContentType("file"

' Path where file will be uploaded
Dim pathToFile
pathToFile = Server.mapPath("uploaded/"

& "\" & fileName
' Uploading file data
Dim fileUploaded
fileUploaded = load.saveToFile ("file", pathToFile)
' destroying load object
Set load = Nothing
%>