BufferSize
The BufferSize property defines the size of buffer for data receiving (in bytes).
The minimal value is 2048 bytes. The maximal value is 1Mb.
The default value is 2048.
Notes
This property influences the actual input buffer size only if you are reading data
in binary mode (see the Receive function).
Example
<%
Set tcpip=CreateObject("TCPIP.Connection")
.............
tcpip.BufferSize=8196
.............
%>