Thanks for the code. But I am getting "Invalid procedure call or argument:
MidB" when I do the following:
count = Request.TotalBytes
binRead = Request.BinaryRead(count)
Dim MyString
For N=0 To UBound(binRead)
MyString = MyString&ChrW(AscW(Chr(AscB(MidB(binRead, N, 1)))))
Next
Please advice what am I doing wrong.
Thankyou very much.
Imran Badr.
Quote:
> ->
> Dim MyString
> For N=0 To UBound(MyByteArray)
> MyString = MyString &ChrW(AscW(Chr(AscB(MidB(MyByteArray, N, 1)))))
> Next
> ....
> <-
> --
> Dominic