I've got a little chat application I'm trying to modify, so far I've added all the features I want, except I can't figure out how to clear the contents of the chat window when someone leaves the room.
This is the code that is supposed to clear everything:
Unfortunately, it doesn't. What should I be looking for in the chat script (or should add to this page) - would killing all the cookies used help me?
Any advice would be appreciated. I can post more code if that would help.
Thanks in advance!
Michelle
This is the code that is supposed to clear everything:
Code:
<%
application("emchatusers") = ""
for f=1 to 20
Application(f)=""
next
%>
Unfortunately, it doesn't. What should I be looking for in the chat script (or should add to this page) - would killing all the cookies used help me?
Any advice would be appreciated. I can post more code if that would help.
Thanks in advance!
Michelle