Met Binarywrite
# ASP BinaryWrite Method
* * Complete Response Object Reference](#)
* * *
The BinaryWrite method writes data directly to the output without character conversion.
**Tip:** This method can be used to write image data (BLOB) from a database to the browser.
### Syntax
response.BinaryWrite data
| Parameter | Description |
| --- | --- |
| data | Required. The binary information to be sent. |
* * *
### Example
If you have an object that can generate a byte array, you can use BinaryWrite to send the bytes to the application:
* * Complete Response Object Reference](#)
YouTip