How do you read data from a ADODB stream in ASP as byte values?

Posted by user89691 on Stack Overflow See other posts from Stack Overflow or by user89691
Published on 2010-05-03T05:46:19Z Indexed on 2010/05/03 5:58 UTC
Read the original article Hit count: 281

Filed under:
|
|
|
|

I have an ASP routine that gets a binary file's contents and writes it to a stream. The intention is to read it from the stream and process it st the server.

So I have:

ResponseBody = SomeRequest (SomeURL) ;

var BinaryInputStream = Server.CreateObject ("ADODB.Stream") ;
BinaryInputStream.Type = 1 ; // binary
BinaryInputStream.Open ;
BinaryInputStream.Write (ResponseBody) ;
BinaryInputStream.Position = 0 ;

var DataByte = BinaryInputStream.Read (1) ;

Response.Write (typeof (DataByte)) ; // displays "unknown"

How do I get the byte value of the byte I have just read from the stream?

Asc () and byte () don't work (JScript)

TIA

© Stack Overflow or respective owner

Related posts about asp

Related posts about stream