views:

130

answers:

3

hello folks., i am screen scraping a website which is in danish language.. i am unable to scrape certain characters as like må .. any idea to solve this? thanks

+1  A: 

Try UTF-8 or Windows-1252 charset.

Zenzer
thanks ..i tried that..here website has " windows-1252" encoding
SAK
A: 

If you are using a Web browser control, you can set the page encoding to whatever language that can show that character. Then just extract the page source.

seagulf
A: 

i just used System.Web.HttpContext.Current.Server.HtmlDecode() it works ..

SAK