I am using my local Apache Server and its address is 127.0.0.1 . and i trying to load html page from this server to C# programme using HTML Agility PACk but its showing
doc.Load takes a path to a local file on disk.
doc.Load
You should use the HtmlWeb class:
HtmlWeb
HtmlDocument docHtml = new HtmlWeb().Load(url);