How to generate XML file as follow, using XmlDocument

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Abhijit D. Babar

    How to generate XML file as follow, using XmlDocument

    Hello,
    I have to generate XML file as follow, using XmlDocument.


    <Company>
    < Employee EID=”111” Description=” xyz”>
    <Dept DeptNo=”D10”>
    <FirstNameAbhij it </FirstName>
    <LastNameBaba r </LastName>
    </Dept>
    <Dept DeptNo=”D20”>
    <FirstNameSahin e </FirstName>
    <LastNameGhavan e </LastName>
    </Dept>
    </Employee>

    < Employee EID=”222” Description=” abc”>
    <Dept DeptNo=”D10”>
    <FirstNameSwapn il </FirstName>
    <LastNameChav an </LastName>
    </Dept>
    </Employee>
    </Company>


    I have to add Dept node at runtime and not fix number, Dept node added
    will be between 1 to 10. Sometimes I will add 2 Dept nodes;
    sometimes I will add 10 Dept nodes. New node will append at the end
    position.
    Also I have to search Employee node from its EID, and Delete
    particular node from EID.
    Also all Dept node will be display when we select Particular EID from
    Employee Node

    How can I do this. Please give me hint. Thanks

Working...