Is There a way to write a data field of an xml file as a link using only
html?
example:
<name>abc</name>
<link><http:\\www.lalala.com></link>
<name>abc2</name>
<link><http:\\www.lalala.com>2</link>
output:
abc link to http:\\www.lalala.com
abc2 link to http:\\www.lalala.com2
How can i write it as a link using html and xml data islands?
Thanks