problem with write cookie
when i try to write cookie on ASP page with the line like this
<% Response.Cookie ("username")="test1" %>
i get the message: object doesn't support this property ormethod: 'cookie'
i use windows 2000 server
any suggestion?
thank you
Re: problem with write cookie
Try changing this:
<% Response.Cookie ("username")="test1" %>
To be more like this instead:
<% Response.Cookies("username") = "test1" %>
Best regards,
-Paul
www.Bullschmidt.com - Freelance Web and Database Developer
www.Bullschmidt.com/DevTip.asp - Classic ASP Design Tips