Request.BinaryRead()!

A

Arpan

Under what circumstances can Request.BinaryRead() be useful & when
should it be used?

Assume that the value of Request.Form("anyvalue") is "a" (without the
quotes). The output of

<%
Response.Write(Request.BinaryRead(10))
%>

is "??a" (again, without the quotes). How does ASP compute this value?

Thanks,

Arpan
 
P

Phill. W

Arpan said:
Under what circumstances can Request.BinaryRead() be useful
& when should it be used?

Most commonly used for uploading files to the web server, as
submitted by the said:
Assume that the value of Request.Form("anyvalue") is "a"

Without the use of a third-party component, you cannot mix using
BinaryRead with using "ordinary" form fields; the use of one
precludes the use of the other. Because of this, most components
supply a surrogate Form collection.

Unless, of course, you unpick the uploaded content and pull out in
the individual form fields as well as the binary stuff.
Fiddly, but possible.

HTH,
Phill W.
 
B

Bullschmidt

And there are some non-component ASP classes that use
Request.BinaryRead() for file uploading and still allow access to
regular form fields with a special syntax such as:

ASP File Upload Using VBScript by John R. Lewis - 7/10/2000
http://aspzone.com/articles/160.aspx

Pure ASP File Upload by Jacob Gilley - Approx. 12/2000
http://www.asp101.com/articles/jacob/scriptupload.asp

Best regards,
J. Paul Schmidt, Freelance ASP Web Developer
http://www.Bullschmidt.com
ASP Design Tips, ASP Web Database Demo, Free ASP Bar Chart Tool...

<<
Without the use of a third-party component, you cannot mix using
BinaryRead with using "ordinary" form fields; the use of one
precludes the use of the other. Because of this, most components
supply a surrogate Form collection.

Unless, of course, you unpick the uploaded content and pull out in
the individual form fields as well as the binary stuff.
Fiddly, but possible.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,755
Messages
2,569,537
Members
45,020
Latest member
GenesisGai

Latest Threads

Top