What title say...
i want get infromation from imdb.com , i enter url of film and program show me rating etc..
know somebody how to code this ? Or any exaple of getting text from website ?
Printable View
What title say...
i want get infromation from imdb.com , i enter url of film and program show me rating etc..
know somebody how to code this ? Or any exaple of getting text from website ?
You can go for the WebClient.DownloadString method to get the Data from web sites.
What I did was went to the IMDB Site and type something and clicked the button and URL Changed to
I passed this to the methodCode:http://www.imdb.com/find?q=one+day+at+the+musem;s=tt
Now the strContents will contain the web contents...Code:Dim wc As New System.Net.WebClient()
Dim strContents As String = wc.DownloadString(String.Format("http://www.imdb.com/find?q={0};s=tt", "one+day+at+the+musem"))