网络应用程序我想列出一些具有相应动态捕获的网站图像的网站。请告诉我一些C#...
答案 0 :(得分:3)
<强>更新强>
http://www.codeproject.com在source code上有一篇文章Webpage thumbnailer,可以帮助您启动并运行。
您可以轻松修改源以指定要捕获的视口大小,以及是否需要截屏或全高抓取。
答案 1 :(得分:1)
答案 2 :(得分:1)
您可以尝试将网站的HTML响应附加到文字,
string SiteHtml = new System.Net.WebClient().DownloadString("specify the url here");//Get response to a string
ltrlSite.Text = SiteHtml; //Assign it to a literal
同时检查link 。