Print screen in GridView

Print screen in GridView

am 16.04.2008 10:22:00 von ciupazNoSpamGrazie

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.
--
Luigi

Re: Print screen in GridView

am 16.04.2008 10:33:58 von Eliyahu Goldin

What do you think will be the difference between a print screen and any
other image?

--
Eliyahu Goldin,
Software Developer
Microsoft MVP [ASP.NET]
http://msmvps.com/blogs/egoldin
http://usableasp.net


"Luigi" wrote in message
news:B4970379-1D9D-4676-854E-6B2A447CE327@microsoft.com...
> 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.
> --
> Luigi
>

Re: Print screen in GridView

am 16.04.2008 10:42:00 von ciupazNoSpamGrazie

"Eliyahu Goldin" wrote:

> 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

Re: Print screen in GridView

am 16.04.2008 11:03:40 von Eliyahu Goldin

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?

--
Eliyahu Goldin,
Software Developer
Microsoft MVP [ASP.NET]
http://msmvps.com/blogs/egoldin
http://usableasp.net


"Luigi" wrote in message
news:6497F89C-E9C9-419D-BCFD-6A090F913E08@microsoft.com...
> "Eliyahu Goldin" wrote:
>
>> 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

Re: Print screen in GridView

am 16.04.2008 11:19:03 von ciupazNoSpamGrazie

"Eliyahu Goldin" wrote:

> 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

Re: Print screen in GridView

am 16.04.2008 11:34:32 von Eliyahu Goldin

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


"Luigi" wrote in message
news:7EC504FC-F300-42EB-84EE-B45CD83D20A7@microsoft.com...
> "Eliyahu Goldin" wrote:
>
>> 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

Re: Print screen in GridView

am 16.04.2008 11:42:00 von ciupazNoSpamGrazie

"Eliyahu Goldin" wrote:

> 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

Re: Print screen in GridView

am 16.04.2008 11:51:09 von Eliyahu Goldin

Correct

--
Eliyahu Goldin,
Software Developer
Microsoft MVP [ASP.NET]
http://msmvps.com/blogs/egoldin
http://usableasp.net


"Luigi" wrote in message
news:7876D5E2-A73A-486F-B6F5-1C19895355D8@microsoft.com...
> "Eliyahu Goldin" wrote:
>
>> 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

Re: Print screen in GridView

am 16.04.2008 12:13:00 von ciupazNoSpamGrazie

"Eliyahu Goldin" wrote:

> Correct

Ok, thank you Eliyahu.

Luigi