Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8563287
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T16:55:36+00:00 2026-06-11T16:55:36+00:00

How can I get href attribute from <a class=’l’> ? This is my code

  • 0

How can I get href attribute from <a class='l'> ?

This is my code – it use HtmlAgilityPack to load the HTML source, but when iterating over SelectNodes("//a[@class='l']") in the foreach loop doesn’t work.

Any ideas?

HtmlWeb siec = new HtmlWeb();
HtmlAgilityPack.HtmlDocument htmldokument = siec.Load(@"https://www.google.pl/search?q=beer");
List<string> list = new List<string>();

if (htmldokument != null)
{
    foreach (HtmlNode text in htmldokument.DocumentNode.SelectNodes("//a[@class='l']"))
    {

        list.Add(text.InnerHtml);
        Console.WriteLine(text.InnerHtml);
    }
}
Console.ReadKey();
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-11T16:55:38+00:00Added an answer on June 11, 2026 at 4:55 pm

    You can access to HtmlNode attributes like that:

    node.Attributes["name"].Value

    or even better (just in case the attribute does not exist):

    node.GetAttributeValue("name", "")
    

    If the attribute name is not found, an empty string will be returned.


    HtmlWeb siec = new HtmlWeb();
    HtmlAgilityPack.HtmlDocument htmldokument = siec.Load(@"https://www.google.pl/search?q=beer");
    List<string> list = new List<string>();
    
    if (htmldokument != null)
    {
        foreach (HtmlNode text in htmldokument.DocumentNode.SelectNodes("//a[@class='l']"))
        {
            var href = text.GetAttributeValue("href", "");
            list.Add(href);
            Console.WriteLine(href);
        }
    }
    Console.ReadKey();
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to get the href attribute from a div with the class name
I can get the file path with: (message (file-name-directory (or buffer-file-name load-file-name))) But if
I have to get a far parent's child's child's attribute href... now i can
how can i get the attribute (href) of a link that is in the
How can I use jQuery to get a string of text from the onclick
This is my HTML code <div class=anythingWindow> <ul class=anythingSlider> <li class=panel activePage> <div class=content
How can I get the value of the href attribute in a link to
I'm trying to get the first image from this site but I keep getting
We can get class Class object by 3 methods: MyClass.class obj.getClass Class.forName(className) I don't
I can get this to work: [<DllImport(user32.dll)>] extern bool GetClientRect(nativeint, RECT*) let getClientRect hwnd

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.