I am trying to acess Bean thorugh JSP using useBean tag ,but its giving me ClassNotfoundExcetption i think i am missing somewhere in structure of JSP program
Can anyone tell me where shall i place this Bean class so it can be read

Currently i have putted it inside WEB-INF ->Classes folder

R u Using MVC Architecture?
One thing U do create a package in bean package Student;
Now If U have Servlet
write there
Student.BeanName b=new Student.BeanName b();
b.set();
b.get();
RequestDispatcher rd=request.getRequestDispatcher("NewClient.jsp");
rd.forward(request,response);
now in jsp u can use them

bye
If u have problem just Reply me.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.