The method function(String) is undefined for the type Class--JSP error
866972Aug 2 2011 — edited Aug 2 2011Hi ,
I have a method defined in my dataManagerDAO class
getNoc( strRppsId) throws Exception {}
Now I am calling this method inside my JSP page :
DataManagerDAO dataMgr = new DataManagerDAO();
dataMgr.getNoc(strRppsId)..
But whenver I am running it locally , it fails to compile and gives following error msg :
The method getNoc(String) is undefined for the type DataManagerDAO
ny clue wats going wrong in here ?
Thanks