BinaryRead method
I'm trying to clearly understand the use of the BinaryRead Method. If someone can offer a good example of its use, it would be helpful.
I was looking at the following script, but still don't quite understand how to really use it.
<%
Dim a, b
b = Request.TotalBytes
a = Request.BinaryRead(b)
For i = 1 to b
Response.Write MidB ( data, i, 1)
Next
%>
As a test, I saw that it returned the name/value pairs submitted from a form.
Can anyone offer a good explanation and use of BinaryRead?
Thanks,
-Dman100-
|