ASP.NET(vb.net) Response.BinaryWrite() - Response Object - Response.BinaryWrite() : The BinaryWrite method writes the specified information to the current HTTP output without any character conversion. This method is useful for writing nonstring information, such as binary data required by a custom application.
ShotDev Focus:
- ASP.NET(vb.net) Response.BinaryWrite() - Response Object
Syntax
BinaryWrite( data )
Example
<% Set objBinaryGen = Server.CreateObject("MyComponents.BinaryGenerator") vntPicture = objBinaryGen.MakePicture Response.BinaryWrite vntPicture %>
Screenshot
images from binary
.
.
.