Link to home
Create AccountLog in
Avatar of drezner7
drezner7

asked on

Vb Script to Output in HTML

I an trying to output in HTML from a VbScript code, but I keep getting errors.. Here is my output but when I do something like this OutWriteline "<FontSize="14">" it breaks. I am sure I am doing something wrong.

oOut.WriteLine "<htmL>"
oOut.WriteLine "<Body>"
oOut.WriteLine "<FontSize="14">"
oOut.WriteLine "<b><FontSize=14">Testing Session Output </b></font>"
oOut.WriteLine "</font>"
oOut.WriteLine "<Table>"
oOut.WriteLine "<TR>"
oOut.WriteLine(" <td>" & SessionId(0).text & "</td>")
oOut.WriteLine "</TR>"
oOut.WriteLine "</body>"
oOut.WriteLine "</html>"

ASKER CERTIFIED SOLUTION
Avatar of Olaf Doschke
Olaf Doschke
Flag of Germany image

Link to home
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
See answer
Avatar of drezner7
drezner7

ASKER

Thank you so much. That is just what I needed