problem with write cookie

problem with write cookie

am 25.01.2006 11:15:42 von TOP

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

am 29.01.2006 19:05:33 von Paul

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