ASP Request.BinaryRead() - Request Object Performs a binary read of a specified number of bytes from the current input stream.
ShotDev Focus:
- Gets the Binary.
Syntax
Request.BinaryRead()
Example
asp_request_binaryread.asp
<% Option Explicit %> <html> <head> <title>ShotDev.Com Tutorial</title> </head> <body> <% Dim Bytes,Binary Bytes = Request.TotalBytes() Binary = Request.BinaryRead(Bytes) %> </body> </html>
Create a asp file and save to path root-path/myasp/
Run
http://localhost/myasp/asp_request_binaryread.asp
.
.
.