foreach (HtmlNode link in doc.DocumentNode.SelectNodes("//a[@href]"))
{
//Code
}

this is my code where i get the exception please help me in sugesting me a solution

Thanks in advance..........

link|improve this question
Please Post exception details. It may be that doc or doc.DocumentNode is null. – Jehof Feb 7 at 8:48
Could you please post the rest of your code where is doc come from? – Mahmoud Gamal Feb 7 at 8:48
feedback

3 Answers

First stop... run the debugger and see if doc or doc.DocumentNode is null. If not, then I would check your variable instances inside the loop, including link.

Always try debugging before asking questions...

link|improve this answer
feedback

make sure that doc or DocumentNode isn't null.

you can wrap your code like this.

if (doc!=null && doc.DocumentNode!=null)
{
     foreach (HtmlNode link in doc.DocumentNode.SelectNodes("//a[@href]"))
      {

      }
}
link|improve this answer
feedback

Try whether doc.DocumentNode.SelectNodes("//a[@href]") returns null or "doc" is null.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.