Thanks J.
This is awesome. Looks like it will do just what I need.
Can this be used to feed image files to an .asp or .aspx page as well?
thanks in advance,
Bob McClellan.
> Being in an .ADP, I would use the ADODB.Stream method. This will allow
> you
[quoted text clipped - 16 lines]
>> thanks in advance,
>> Bob McClellan
Yes. What I do in our situation is to stream it back into a temporary file
and open that file. Then when done, I delete the file.
In ASP.NET, you probably don't need to save it as a temp file, you can just
create an ASPX page that outputs the file as its Response.OutputStream. I
use something like this in a custom graphics generator on a couple of my
sites. You need to create an aspx page that creates an OutputStream and
refer to this page from you main page.
HTH,
Jim
> Thanks J.
> This is awesome. Looks like it will do just what I need.
[quoted text clipped - 23 lines]
> >> thanks in advance,
> >> Bob McClellan
John316 - 08 Mar 2005 00:09 GMT
Thanks J.
That sounds like exactly what I need.
I am slowly working my way up the curve on this.
I've never used streaming. The example from the
site you referenced was perfect and easy to follow.
(for the .adp)
Is there anything similiar you can point me towards
to try and work with an .aspx file like what you mentioned.
Thanks in advance,
Bob McClellan
> Yes. What I do in our situation is to stream it back into a temporary
> file
[quoted text clipped - 37 lines]
>> >> thanks in advance,
>> >> Bob McClellan