Open In App

ASP BinaryRead Method

The ASP BinaryRead Method is used to retrieve the data that sent to the server from the client-side using POST request. This Method stores the data in Safe Array. A Safe Array is used to store the information about the number and the bounds of its dimensions. 

Syntax:



Request.BinaryRead(count) 

Parameter Values: This property accepts a single parameter as mentioned above and described below:

Example: Below code uses the BinaryRead method to place the content of a request into a safe array.






<%
dim a,b
a=Request.TotalBytes
'fetch the total number of Bytes 
b=Request.BinaryRead(a)
%>

Article Tags :