0

I don't mind if it is a print screen or export proccess of the page to jpg or even to pdf... how can it be done?

Joel Coehoorn
  • 399,467
  • 113
  • 570
  • 794
Y.G.J
  • 1,098
  • 5
  • 19
  • 44

1 Answers1

1

Assuming you literally want to save a screenshot of the user's desktop, this can't be done with server-side technology like ASP, since the user's desktop is not on your server (obviously).

There might be a JavaScript solution (I couldn't find one), or you can use ActiveX (Take a screenshot of a webpage with JavaScript?), which might not be a good idea if this is a public ordering system, since many users won't be able to use (or will turn off) ActiveX--I know I'm personally alarmed to see ActiveX notification these days, and that would likely change my mind about placing an order in the first place.

However, I would very much question the need to take a literal screenshot, instead of just recording the relevant data in a database or log somewhere (and then you could simulate the user's screen).

Community
  • 1
  • 1
Matthew Groves
  • 25,181
  • 9
  • 71
  • 121