README.md
December 4, 2022 ยท View on GitHub
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 | |
| By | snowboardr |
| Level | Beginner |
| User Rating | 2.4 (12 globes from 5 users) |
| Compatibility | ASP (Active Server Pages), HTML |
| Category | Coding Standards |
| World | ASP / 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) & ">"