Say i have this Xml file
how to create another automatic set of IDs and datas for the Xml tag so that when i type in another set of data...Code:<Books> <Book type="1"> <Author>Peter</Author> <Section>1</Section> </Book> </Books>
The content of the Xml file will become:
ThanksCode:<Books> <Book type="1"> <Author>Peter</Author> <Section>1</Section> </Book> <Book type="2"> <Author>John</Author> <Section>2</Section> </Book> </Books>




Reply With Quote