harleydude
September 18th, 2006, 08:48 AM
I have a webpage that sets a cookie, that I will later retrieve in the same page similar to below
<%
webserver:SetCookie("Var","23",nil)
%>
<html>
....
<%
local cookies = webserver:GetCookie()
print (cookies["Var"])
%>
</html>
However, when I call the GetCookie() function cookies is an empty table. Is this normal behaviour?
<%
webserver:SetCookie("Var","23",nil)
%>
<html>
....
<%
local cookies = webserver:GetCookie()
print (cookies["Var"])
%>
</html>
However, when I call the GetCookie() function cookies is an empty table. Is this normal behaviour?