指引网

当前位置: 主页 > 编程开发 > ASP >

ASP BinaryWrite 方法使用实例教程

来源:网络 作者:佚名 点击: 时间:2017-08-23 21:45
[摘要] 指引教程为您提供ASP BinaryWrite 方法使用实例教程等资源,欢迎您收藏本站,我们将为您提供最新的ASP BinaryWrite 方法使用实例教程资源
<script>ec(2);</script>

ASP BinaryWrite 方法使用实例教程

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>

------分隔线----------------------------