How many page directive we can use in a single JSP?

Answers were Sorted based on User's Feedback



How many page directive we can use in a single JSP?..

Answer / rahul patil

We can have any number of page directive in a single jsp
page provided it should have only 'import' attribute.

e.g.
<%@ page import="beans.abc" buffer="2k"%> //1
.
.
.// some jsp page code
.
<%@ page import="beans.xyz"%> //2


if we replace line 2 with
<%@ page import="beans.xyz" buffer="4k"%> //not allowed

In short, we can use page directive many times but for
importing some other classes, not for setting other
attribute values.

Is This Answer Correct ?    3 Yes 1 No

How many page directive we can use in a single JSP?..

Answer / chuntang

language
import
session
buffer
isThreadSafe
ErrorPage
isErrorPage
Info
contentType
pageEncoding
isELIgnore
autoflush

Is This Answer Correct ?    2 Yes 4 No

Post New Answer

More JSP Interview Questions

What is an implicit object?

0 Answers  


Which tags are used for bean development?

0 Answers  


Can we override the jspinit(), _jspservice() and jspdestroy() methods?

0 Answers  


Explain the jspdestroy() method?

0 Answers  


Can we use jsp implicit objects in a method defined in jsp declaration?

0 Answers  






How many messaging models do jms provide for and what are they?

0 Answers  


What are the jsp tags?

0 Answers  


How can I declare methods within my jsp page?

0 Answers  


How does el search for an attribute?

0 Answers  


Give an example where you need jsp custom tag?

0 Answers  


Which tag is used for error handling in jsp pages?

0 Answers  


How is jsp include directive different from jsp include action. ?

0 Answers  


Categories