BinaryWrite方法的数据直接写入到输出没有任何性质的转换。
提示:这种方法是用来撰写图像数据(的BLOB )由一个数据库,一个浏览器。
语法
<pre>response.BinaryWrite data</pre> <pre><table class="ex" cellspacing="0" cellpadding="3" width="100%" border="1"><tbody><tr><th valign="top" align="left" width="20%">Parameter</th><th valign="top" align="left" width="80%">Description</th></tr><tr><td valign="top">data</td><td valign="top">Required. The binary information to be sent</td></tr></tbody></table></pre> <pre>
如果你有一个对象,产生了一系列的字节,您可以使用BinaryWrite发送字节的申请:
<pre><% Set objBinaryGen=Server.CreateObject("MyComponents.BinaryGenerator") pic=objBinaryGen.MakePicture response.BinaryWrite pic %></pre>
</pre>