How to get the source code of a html page using VB.net?

前端 未结 3 1314
夕颜
夕颜 2020-12-09 00:34

I\'m writing a program that gets the source code of a web page with a video on it. It then uses regular expressions to isolate the download link of that video. then it uses

3条回答
  •  春和景丽
    2020-12-09 01:39

    Dim PictureURL As String = "http://www.bing.com" + New System.Net.WebClient().DownloadString("http://www.bing.com/HPImageArchive.aspx?format=rss&idx=0&n=1&mkt=de-DE").Replace("", "|").Replace("", "|").Split("|")(3)
    

提交回复
热议问题