Hi
I am using following code for loading the content of a particular web url
public string LoadWebContents(String url)
{
HtmlWeb htmlWeb = new HtmlWeb();
HtmlDocument doc = htmlWeb.Load(url);
}
but some url creates following error
"gzip' is not a supported encoding name htmlagilitypack"
what is the reason and how can i resolve it?