Hello-
Thanks in advance!
I am creating nodes in an XML file from asp.
As I append nodes, all nodes are written to the same line.
I want to put each node on a new line. The loop I currently have that writes the nodes is this.
for i=0 to 14
Set fileNode = FSO.createNode(1, OSFileListArray(i), ""
Set currentFileNode = rootMain.appendChild(fileNode)
'I WANT TO GO TO A NEW LINE HERE!!!
next
So, I want to go to a newline each time. How do I do it!???
THANKS!!!!!!!
-Mac
Thanks in advance!
I am creating nodes in an XML file from asp.
As I append nodes, all nodes are written to the same line.
I want to put each node on a new line. The loop I currently have that writes the nodes is this.
for i=0 to 14
Set fileNode = FSO.createNode(1, OSFileListArray(i), ""
Set currentFileNode = rootMain.appendChild(fileNode)
'I WANT TO GO TO A NEW LINE HERE!!!
next
So, I want to go to a newline each time. How do I do it!???
THANKS!!!!!!!
-Mac