How do you import the packages in the JSP?
Answer Posted / manas banerjee
<% @ page import = 'package name.class name' %>
suppose we have a package name x and we have a bean (under
the package x)class/class y then you have to write
<% @ page import = 'x.y' %>
| Is This Answer Correct ? | 35 Yes | 15 No |
Post New Answer View All Answers
What are jsp implicit objects?
What is an expression in jsp?
When does a container initialize multiple jsp / servlet objects?
What is jsp declaration?
How can we stop errors on display in a jsp page?
What is meant by jsp?
What are the standard actions available in jsp?
How can a thread safe JSP page be implemented?
What are action tags?
What is jsp expression language and what are it’s benefits?
Explain the uses of jsp?
What are context initialization parameters?
A jsp page, include.jsp, has a instance variable "int a", now this page is statically included in another jsp page, index.jsp, which has a instance variable "int a" declared. What happens when the index.jsp page is requested by the client?
What is jsp api?
What is the jspdestroy() method?