Re: [ADVANCED-DOTNET] Reading an SQL Image with VB .NET

2004-10-11 Thread Joseph Shook
] 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

Re: [ADVANCED-DOTNET] Reading an SQL Image with VB .NET

2004-10-11 Thread Eric Means
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

Re: [ADVANCED-DOTNET] Reading an SQL Image with VB .NET

2004-10-11 Thread Jon Guerin
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

Re: [ADVANCED-DOTNET] Reading an SQL Image with VB .NET

2004-08-10 Thread Chad M. Gross
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

Re: [ADVANCED-DOTNET] Reading an SQL Image with VB .NET

2004-08-10 Thread Bryan Clauss
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

Re: [ADVANCED-DOTNET] Reading an SQL Image with VB .NET

2004-08-05 Thread Chad M. Gross
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

Re: [ADVANCED-DOTNET] Reading an SQL Image with VB .NET

2004-08-05 Thread Frans Bouma
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

[ADVANCED-DOTNET] Reading an SQL Image with VB .NET

2004-08-04 Thread Bryan Clauss
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