Posts: 488
Name: Chip Johns
Location: Savannah Georgia
|
This works --I took the quotes out of the font code and it worked fine..?? i am usually big oin using quotes in my html, but, have found that when I need to take them out due to similar problems, I usually do not have a problem with the missing quotes.
<%@LANGUAGE="VBSCRIPT"%>
<%
DIM strTest
strTest = "<font color=#ff0000>Test</font><font color=#0000ff>test</font>"
%>
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
<%= strTest%>
</body>
</html>
|