طريقة BinaryRead في ASP

Request Object Reference Manual

يستخدم طريقة BinaryRead لاستقبال البيانات التي يتم إرسالها من العملاء إلى الخادم كجزء من الطلب POST.

تعليقات:يرجى التأكد من استدعاء Request.Form بعد BinaryRead، وإلا قد يحدث خطأ.

فوغرو

Request.BinaryRead(count)
Parameter Description
count Required. Specifies how many bytes to read from the client.

Example

The following example uses the BinaryRead method to put the content of a request into a secure array:

<%
dim a,b
a=Request.TotalBytes
b=Request.BinaryRead(a)
%>

Request Object Reference Manual