<%@ language="javascript" %>
<%
Response.Cookies("firstname")="Alex"
%>
<!DOCTYPE html>
<html>
<body>
<%
var fname
fname=Request.Cookies("firstname")
Response.write("Firstname=" & fname)
%>
</body>
</html>
When I launch this file in the browser it keeps giving me 0. Is this because javaScript only operates on cookies on the client? Whereas, asp is a server side technology.
If so, is there a workaround using javaScript or are people forced to use another language?
Javascript concatenation uses + not & so: