Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

go to a new line in xml doc from asp/vbscript

Status
Not open for further replies.

feathers

IS-IT--Management
Nov 8, 2002
4
ZA

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
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top