jsp & Hashtable
Hi,
I am working with this code
<%@ page import="java.util.*" %>
<%Hashtable elementsnow =new Hashtable();%>
<%!int nu(){
Enumeration e = elementsnow.elements();
}
%>
and i get this error:
cannot resolve symbol
symbol : variable elementsnow
location:class desisoft_jsp_carr_jsp1183111283500
Enumeration e = elementsnow.elements();
^
1 error
is there something i am not declaring right?
what can i do?
thanks..

