Hy,
I need to get data from IMDB using proxy. I made program which can download data, but the were downloaded on Croatian language because I'm from Croatia so I need to use UK proxy to get that data in English!

Code:
Dim url As String = "http://www.imdb.com/search/title?sort=moviemeter,asc&start=" & j & "&title_type=feature&year=2010,2010"
            Dim html, naslov, ocjena As String
            Dim request As Net.HttpWebRequest = Net.HttpWebRequest.Create(url)
            Dim response As Net.HttpWebResponse
            response = request.GetResponse
            Using sr As New IO.StreamReader(response.GetResponseStream)
                html = sr.ReadToEnd()
            End Using
            request.Abort()
            response.Close()
How to use proxy in this code? I really need help with this...

Thanks in advance, dapapo