guys, can you tell me what is wrong with the following code?
I get this error
Error Type:
Microsoft VBScript compilation (0x800A0412)
Must be first statement on the line
/default.asp, line 12, column 81
response.write ("<link href='/css/print.css' rel='stylesheet' type='text/css'>") else
Thanks folks
Code:
<%
if request.querystring("type") = "print" then
response.write ("<link href='/css/print.css' rel='stylesheet' type='text/css'>") else
response.write ("<link href='/css/innovate.css' rel='stylesheet' type='text/css'>")
end if
%>
I get this error
Error Type:
Microsoft VBScript compilation (0x800A0412)
Must be first statement on the line
/default.asp, line 12, column 81
response.write ("<link href='/css/print.css' rel='stylesheet' type='text/css'>") else
Thanks folks