Asha try seeing this article it should guide you:-
http://aspnet.4guysfromrolla.com/articles/112603-1.aspx
Or if possible post what actually you are trying to do
Patrick
"Asha" <(E-Mail Removed)> wrote in message
news:48DC1EE0-572B-464E-BC14-(E-Mail Removed)...
> Hello, below is a xml file which I'm working with. I want my result to be
> like this
>
> <group name="grp 4">
> <report>
> <name>MTIS_1</name>
> </report>
> <report>
> <name>MTIS_1</name>
> </report />
> <report>
> <name>MTIS_2</name>
> </report>
> </group>
>
> but instead it came outlike this.
>
> <group name="grp 4">
> <report>
> <name>MTIS_1</name>
> <name>MTIS_1</name>
> <name>MTIS_2</name>
> </report>
> <report />
> <report />
> </group>
>
> what I want to do is, append the new attribute which is "name" into a new
> report node, but instead, it keeps adding into an existing report node...
how
> can I overcome this problem whereby I want to add new attribute call
"name"
> into individual report node?
>