Print screen in GridView

  • Thread starter Thread starter Luigi
  • Start date Start date
L

Luigi

Hi all,
anyone knows if is it possible to insert (and obviously save) a Windows
print screen in a GridView cell? (ASP.NET 2.0).

Thanks in advance.
 
Eliyahu Goldin said:
What do you think will be the difference between a print screen and any
other image?

No very important differences, only that a print screen needs only a
Cut&Paste operation, that the user can make it very fast.

Luigi
 
Eliyahu Goldin said:
It won't be any fast. Since GridView is a server control, the image will
have to travel all the way from client to server and back. What exactly do
you want to achieve?

Hi Eliyahu,
the users of the web applications "want" to be able to store (for each
record showed in the GridView) an image, a print screen of something (Windows
Desktop, site's pages, and so on).
What do you suggest to achieve this improvement?

Luigi
 
No matter what images they want to store, they will need to upload them
first to the server. In the grid, you may want to show just a text link that
will open the image. Or, you may want to produce thumbnails and show them in
the grid. Users will get the full image by clicking the thumbnails.

--
Eliyahu Goldin,
Software Developer
Microsoft MVP [ASP.NET]
http://msmvps.com/blogs/egoldin
http://usableasp.net
 
Eliyahu Goldin said:
No matter what images they want to store, they will need to upload them
first to the server. In the grid, you may want to show just a text link that
will open the image. Or, you may want to produce thumbnails and show them in
the grid. Users will get the full image by clicking the thumbnails.

And for store the image I may put an FileUpload control in the page?

Luigi
 
Back
Top