Ok I got all the cookie crap worked out... for now. Just needed some if statements in there, here is the code if anyone is interested:
Quote:
<% dim size
%>
<%
if request.cookies("size")="" then
response.cookies("size")="12px"
response.cookies("size").expires=#December 25,2004#
size="12px"
else
size=request.cookies("size")
end if
%>
<%
if request.querystring("fontsize")= "" then
size = request.cookies("size")
else
response.cookies("size")=request.querystring("font size")
response.cookies("size").expires=#December 25,2004#
size = request.cookies("size")
end if
%>
|