Jul 1, 2003 #1 K kimrune Member Joined Jun 24, 2003 Messages 7 Hey... Hope someone knows the answer for this Im using this code to grab content from an URL. The problem is, when displaying the String s all the chars
Hey... Hope someone knows the answer for this Im using this code to grab content from an URL. The problem is, when displaying the String s all the chars
Jul 1, 2003 #2 PlausiblyDamp Administrator Joined Sep 4, 2002 Messages 6,155 Location Lancashire, UK User Rank *Expert* What character set is the webpage encoded in? you may want to try replacing the line s = Encoding.ASCII.GetString(b) with one of the following s = Encoding.Unicode.GetString or s = Encoding.UTF8.GetString
What character set is the webpage encoded in? you may want to try replacing the line s = Encoding.ASCII.GetString(b) with one of the following s = Encoding.Unicode.GetString or s = Encoding.UTF8.GetString