chunk of code...
public void init(ServletConfig config)
throws ServletException
{
Map map = new HashMap();
}
protected void doGet(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
response.setContentType("text/html;charset=UTF-8");
[U]map.put("one1","two2");[/U]
compiler says 'map' cannot be resoled......why so?
wht shd i do?
thanks,
BeanBoy