I am writing a fair bit of new script to my site and want it to be as effective as possible.
My first question is when writing code is it better to do this :
With Response
.Write "<font face=""Arial"" size=""2"">Hello !!</font>" & vbNewLine
End With
Or this :
Response.Write "<font face=""Arial"" size=""2"">Hello !!</font>" & vbNewLine & _
"<font face=""Arial"" size'=""2"">Goodbye !!</font>" & vbNewLine & _
Or just a plain Response.Write.
What way is faster and more effective ?
Cheers !