Click to See Complete Forum and Search --> : Print screen to file


jedifra
11-18-2003, 12:52 PM
Hi everybody

How can I do to save the actual page into a file?

and after,

Send this file by email.

Can I do that? or Are There a other form to send the actual page like image by email?

Thank everybody

requestcode
11-18-2003, 12:59 PM
Javascript won't do it for you. You will have to use a Server Side language such as PHP or Perl to perform that function.

jedifra
11-18-2003, 05:04 PM
I never work with PHP o PERL I only work with ASP. Are There any solution to ASP?

pyro
11-18-2003, 05:07 PM
Yes, I'm sure there is... Try posting in the ASP section.

jedifra
11-18-2003, 05:22 PM
for example:

the page belong a Decision Support System and the user is wathing a sale's figure. He wants send this image to by email to representative south office . So, I can save the page like image using OCX; now I want send it by email.

I reviewed the parameters of mailto. I can use bcc, cc, subject, etc but I canīt use attach.

The image is save on client side so I canīt use ASP, PHP PERL etc because tthe imagen is not on server.

What can I do?

requestcode
11-18-2003, 09:06 PM
How about uploading the image to the Server and then using ASP to email it.

jedifra
11-19-2003, 07:37 PM
<form name="manda" action=mailto:?subject=Archivo&body=hello%20world&attach="C:\myscreen.jpg">

you can use the code above by send attach file

jedifra
11-19-2003, 07:43 PM
the correct code is the follow:

<form name="manda" action=mailto:?subject=Archivo&body=hello%20world&attachment="C:\myscreen.jpg">

you can use the code above by send attach file