Here's my current code:
Dim webber As New Net.WebClient
**webber.Encoding = System.Text.Encoding.UTF8**
htmlsource = webber.DownloadString(URL)
How do I change that part so that I can use 949, the code for Korean encode?
Hello try this for korean
webber.Encoding = Encoding.GetEncoding(949);
949 is a Korean code page
Also refer MS Kink