Link to home
Start Free TrialLog 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
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of drezner7
drezner7

ASKER

Thank you so much. That is just what I needed