Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
R

Rambabu Sapa

@Rambabu Sapa
About
Posts
2
Topics
1
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • How to do curd operations on XML Which Shown Below
    R Rambabu Sapa

    public static string filePath = HttpContext.Current.Server.MapPath("~/App_Data/Messages.xml");
    public static XmlDocument xmlDoc = new XmlDocument();

    XmlNode _xmlNode = xmlDoc.CreateElement("category"); XmlAttribute _xmlCategoryName = xmlDoc.CreateAttribute("Name"); _xmlCategoryName.Value = categoryName; _xmlNode.Attributes.Append(_xmlCategoryName); // Add Message Node XmlElement _xmlElement = xmlDoc.CreateElement("message"); XmlAttribute _xmlId = xmlDoc.CreateAttribute("id"); _xmlId.Value = Convert.ToString(ID); _xmlElement.Attributes.Append(_xmlId); XmlAttribute _xmltitle = xmlDoc.CreateAttribute("title"); _xmltitle.Value = Convert.ToString(title); _xmlElement.Attributes.Append(_xmltitle); XmlAttribute _xmlname = xmlDoc.CreateAttribute("name"); _xmlname.Value = Convert.ToString(name); _xmlElement.Attributes.Append(_xmlname); XmlAttribute _xmlDescription = xmlDoc.CreateAttribute("Description"); _xmlDescription.Value = Convert.ToString(description); _xmlElement.Attributes.Append(_xmlDescription); _xmlNode.AppendChild(_xmlElement); xmlDoc.DocumentElement.AppendChild(_xmlNode);

    XML / XSL xml tutorial

  • How to do curd operations on XML Which Shown Below
    R Rambabu Sapa

    <Messages>
    <category Name="Main">
    <message id="1" title="one" name="Name1" Description="Description1">
    </message>
    </category>
    <category Name="Main1">
    <message id="2" title="two" name="Name2" Description="Description2">
    </message>
    </category>

    XML / XSL xml tutorial
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups