How to generate multiple HTML pages using XSLT?

Mr Steadfast

New Member
I have this XML file. How can I use this single XML file to split into multiple individual pages with each of their respective node and navigate through it with links? Can someone give me a starting point?XML FILE\[code\]<Colors> <Color> <description> <p>This page is red.</p> </description> </Color> <Color> <description> <p>This page is blue.</p> </description> </Color> <Color> <description> <p>This page is green.</p> </description> </Color><Colors>\[/code\]Output:\[code\]<html> <head></head> <body> This page is red. </body></html><html> <head></head> <body> This page is blue. </body></html><html> <head></head> <body> This page is green. </body></html>\[/code\]
 
Back
Top