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

  • SEARCH
  • Home
  • 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 7490005
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T15:28:19+00:00 2026-05-29T15:28:19+00:00

I have an xelement which is basic html, i want to quickly loop through

  • 0

I have an xelement which is basic html, i want to quickly loop through all the elements that are paragraph tags and set the style attribute or append to it. I am doing what is below, but it is not changing the master xelement. How can i make this work?

    XElement ele = XElement.Parse(body);
    foreach (XElement pot in ele.DescendantsAndSelf("p"))
    {
        if (pot.Attribute("style") != null)
        {
            pot.SetAttributeValue("style", pot.Attribute("style").Value + " margin: 0px;");
        }
        else
        {
            pot.SetAttributeValue("style", "margin: 0px;");
        }
    }
  • 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-05-29T15:28:22+00:00Added an answer on May 29, 2026 at 3:28 pm

    Just use the Value property – you can retrieve as well as set the attribute value with it. Only adding an attribute is a little more work – you use the Add() method and pass an instance of XAttribute:

    if (pot.Attribute("style") != null)
    {
        pot.Attribute("style").Value = pot.Attribute("style").Value + " margin: 0px;";
    }
    else 
    {
        pot.Add(new XAttribute("style", "margin: 0px;"));
    }
    

    It looks though like you are actually editing HTML (I might be mistaken though) – in that case be aware that most HTML that works just fine in a browser is not valid XML – you should use a parser for HTML in that case, e.g. HtmlAgilityPack which will do a much better job at this.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

If I have an XElement that has child elements, and if I remove a
I want to have an extension method for XElement/XAttribute that allows me to apply
I have an XElement, called XUsers, that will contain XML which looks like this:
I have 2 IEnumerables IEnumerable<float> Distance IEnumerable<XElement> Point which i want to convert into
I have an XElement object which has a number of attributes and I simply
I have a source piece of xml into which I want to insert multiple
I'm trying to validate an XDocument with a compiled schema that I have (which
I have a XDocument where I'd like to sort all of the elements alphabetically.
EDIT: Switched from XmlTextWriter to XElement I have a Player class, which has following
So here's my case. I have an XElement, let's call it root, which has

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.