ASP Response.BinaryWrite() - Response Object Writes a string of binary characters to the HTTP output stream.
ShotDev Focus:
- The bytes to write to the output stream.
Example
asp_response_binarywrite.asp
<% Option Explicit %> <html> <head> <title>ShotDev.Com Tutorial</title> </head> <body> <% Dim objBinary Dim strBinary Set objBinary = Server.CreateObject("ShotDev.UploadBinary") strBinary = objBinary.Upload("txtUpload") Response.BinaryWrite(strBinary) %> </body> </html>
Create a asp file and save to path root-path/myasp/
Run
http://localhost/myasp/asp_response_binarywrite.asp
Screenshot
.
.
.