Sorry.. In my first post where I wrote:
...
<%
out.print(session.getAttribute("enick"));
%>
...
It's actually cast to a string before it's printed:
...
<%
out.print((String)session.getAttribute("enick"));
%>
...
Last edited by peter_budo; Nov 18th, 2008 at 5:04 am. Reason: Code tag correction, use [code] or [code=java]