Print screen in GridView
am 16.04.2008 10:22:00 von ciupazNoSpamGrazieHi 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
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
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"
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
>
"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
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"
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
"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
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"
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
"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
Correct
--
Eliyahu Goldin,
Software Developer
Microsoft MVP [ASP.NET]
http://msmvps.com/blogs/egoldin
http://usableasp.net
"Luigi"
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
"Eliyahu Goldin" wrote:
> Correct
Ok, thank you Eliyahu.
Luigi