Create thumbnail from url using asp.net 2.0

Can someone help me in sketching from url.

when the user saves the link, I want to show a screenshot of the webpage as a thumbnail

I am using asp.net 2.0

thanks

+3
source share
2 answers

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

  • It should run in a thread with a single thread.
  • It may not work on all pages, such as pages that require interaction with Javascript or Flash.

Here are some links to some walkthroughs:

+2

Source: https://habr.com/ru/post/1715349/


All Articles