Answer Posted / guest
A JSP directive affects the overall structure of the servlet
class. it usually has the following form:
<%@ directive attribute="value" %>
How ever , you can also combine multiple attribute settings
for a single directive, as follows:
<%@ directive attribute1="value1" attribute2="value2" --
attrubuteN="value N" %>
These are two main types of diretive:page, which lets to
do things like import classes,customize the servlet
superclass, and the like; and include,which lets to insert a
file into the servlet class at the time the JSP file is
translated into a servlet.
| Is This Answer Correct ? | 11 Yes | 4 No |
Post New Answer View All Answers
Explain jsp?
how can i add properties in dynamic text fields using .js file?
Explain implicit objects in jsp?
Can we use jsp implicit objects in a method defined in jsp declaration?
Explain the uses of jsp?
Which of the following action variable is used to include a file in jsp?
How to include a jsp file in another jsp file?
What is the purpose of
How can automatic creation of session be prevented in a jsp page?
Is jsp technology extensible?
Why is jsp used?
Explain the jsp life cycle?
What is tag file in jsp?
When i am useing useBean tag of JSP in weblogic server It show compiletion error..Like bad class file: C:\bea\user_projects\domains\Mahesh\applications\UseBean\WEB-INF\classes\user\UserData.class class file has wrong version 49.0, should be 48.0 Please remove or make sure it appears in the correct subdirectory of the classpath. user.UserData user1 = null; //[ /SaveName.jsp; Line: 4]
How do you comment out in jsp?