Okay, I'm doing something really stupid, and can't figure it out. I'm trying to write a simple IF statement in the following context:
Code:
<td><font face="Verdana" size=1>
<%
if rsqdb("KPName") like '%cpu%' then
response.write rsqdb("CPU")
else
response.write rsqdb("KPName")
end if
%>
</td>
I keep getting a syntax error.