README.md

December 4, 2022 ยท View on GitHub

Response.write html without quotes

Description

This shows how to Response.write html code without quotations, when I was first learning ASP, I wish I would have known this instead of having to do tons of quotes and chr(34)'s .

More Info

chr(34) = " '1 quote

Submitted On
Bysnowboardr
LevelBeginner
User Rating2.4 (12 globes from 5 users)
CompatibilityASP (Active Server Pages), HTML
CategoryCoding Standards
WorldASP / VbScript
Archive File

Source Code

<%
Response.write ("<font face= Arial color= Arial size= 2>")
%>
OR the old way..
Response.write "<font face= Arial"& "color=#" & chr(34) & "000000" & chr(34) & " size=" & chr(34) & "2" & chr(34) & ">"