For Programmers: Free Programming Magazines  


Home > Archive > ASP > August 2005 > Request.BinaryRead()!









You are viewing an archived Text-only version of the thread. To view this thread in it's original format and/or if you want to reply to this thread please [click here]

 

Author Request.BinaryRead()!
Arpan

2005-08-25, 3:55 am

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

Phill. W

2005-08-25, 7:56 am

"Arpan" <arpan_de@hotmail.com> wrote in message
news:1124955035.258806.120750@g44g2000cwa.googlegroups.com...
> 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 <input type='file'> HTML form field.

> 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.


Bullschmidt

2005-08-25, 7:56 am

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.[color=darkred]

*** Sent via Developersdex http://www.developersdex.com ***
Sponsored Links







Also available: Server administration forum archive | Web Design forum archive | Software forum archive | Hardware reviews archive

Copyright 2008 codecomments.com