views:

499

answers:

3

Can any one help me on how to create a thumbnail from a url.

when the user saves a link, i want to show the screenshot of the web page as a thumbnail

i am using asp.net 2.0

Thank You

A: 

Use Snap shots.

mcandre
I cant user snap shots as i want to have a static image on my server. eg. if you take the home page of www.cnn.com today and tomorrow both will be different.
vamsivanka
A: 
Jon Galloway
Thank's for the input. We can't user third party services as our company doesn't allow it.
vamsivanka
+2  A: 

If you need to do this yourself, you can use the Winforms WebBrowser control in an ASP.NET application, with a few caveats:

  • It needs to run in a single threaded apartment thread
  • It might not work on all pages, such as pages which require Javascript or Flash interaction

Here are a few links to some walkthroughs:

Jon Galloway