copying attribute from one node to other
XML / XSL
1
Posts
1
Posters
1
Views
1
Watching
-
i want copy few attrbute from one node to another node using XSLT stylesheet test2 attributes are need to copied to test1 e.g input: Test1 a1="123" a2="234" a3="567" Test1 Test2 b11="123" b2="234" b3="567" Test2 output input: Test1 a1="123" a2="234" a3="567" b11="123" b2="234" b3="567" Test1 Test2 b11="123" b2="234" b3="567" Test2