I get Html code on the same line. <html><head>...</head><body>...<body></html> Code (markup): I would like to get it on a new line: <html> <head>... </head> <body>... <body> <html> Code (markup):
response.write("<div>bobobobob</div>" & vbCrLf & "<div>fergerger</div>") would put the text in the html file on two separate lines (think & is the join, if not it is + )
Try this: <% Response.Write("<html>" + vbCrLf + " <head>" + vbCrLf + " ..." + vbCrLf + " </head>" + vbCrLf + "</html>") %> Code (markup):
Yah - you can response.write "thisismydata" & vbcrlf and if you want to tab it in - you can use vbtab.