] Reading an SQL Image with VB .NET
Can someone point me to an example of saving an asp.net html page to an
image.
Ultimately I want to save it to an sql table and later retrieve it and email
the image as a pdf document.
Thank You
Jon G.
===
This list is hosted by
Jon, I'm not sure if you have any kind of budget for this, but there
is a component listed on this page that might suit your needs:
http://www.pcwdld.com/development-tools/component-suite/web-page-snapshot.htm
If you're looking for free info, there's an article here on how to
take screenshots of a
Can someone point me to an example of saving an asp.net html page to an
image.
Ultimately I want to save it to an sql table and later retrieve it and email
the image as a pdf document.
Thank You
Jon G.
===
This list is hosted by DevelopMentorĀ® http://www.deve
Looks like the list is down again but you must have sent your reponse to
me also since I got it before it appeared on the list.
Frans and I said essentially the same thing. Create the separate page and
like Frans said with no HTML in it. This is because you can't have that
stuff making its way in
Frans, Chad,
Thanks for the reply, but I am not sure if I understand your answers.
Chad wrote:
> Use the img tag:
> Then in your getimagepage.aspx get the image bytes and perform a
> Response.BinaryWrite() and set the ContentType to whatever is
> appropriate for the image being pulled from th
Use the img tag:
Then in your getimagepage.aspx get the image bytes and perform a
Response.BinaryWrite() and set the ContentType to whatever is appropriate
for the image being pulled from the db.
Chad
On Tue, 3 Aug 2004 15:28:10 -0400, Bryan Clauss <[EMAIL PROTECTED]>
wrote:
>I have an SQL se
Create a separate .aspx page, which doesn't have any HTML. In the code
behind you load the image into a memory stream and you stream that data
towards the browser by writing it into the response, setting the
appropriate headers. (so clear the headers first):
Response.ClearHeaders();
Response.AddHe
I have an SQL server table that contains an Image data type.
I want to read this Image into memory, and display it on an ASPX web page.
I know how to read the image, and dump it to the users hard drive (right
now it gets created in the users WINNT/System32 folder, and not "TEMP").
I would like t