Craig from Alberta
Starting Member
Canada
7 Posts |
Posted - 30 August 2001 : 18:11:00
|
I'm a bit confused as to what you mean by cannot be performed before or after a Request.BinaryRead()
It can as long as the two are not related I think.
However you can't request.form("anything") that is in ASCII and use Request.BinaryRead() in conjunction with it which works on binary data only. When you POST a form you have to either use text/html as the ENCTYPE or else something like image/JPG but you cannot mix and match the two from the same form.
In essence, to pass both text and image data to one page to be processed you have to first pass the text data to Session variables on one page, pass the image data to be processed on a second page and grab the text data out of the Session variables because you cannot both Request and Request.BinaryRead from the same form.
|
|
|