JSP Interview Questions and Answers
<< Previous Question Next Question >>
 Question: 516 Page Views: 

How will you pass information from JSP to included JSP?



Posted By: Avi Date: 7 November 2010 05:07:57 PM
 Answer:

By using <%jsp:param> tag.


Posted By: avibtech


Date: 7 November 2010 05:07:57 PM
Post a better Answer if you have
 
(Will show your Gravatar icon)  
  Country flag

Loading
Enter the text as shown in the image WJDUqb
Related Questions
JSP : What are context initialization parameters?

What are context initialization parameters?

Context initialization parameters are specified by the <context-param> in the web.xml file and....
Category: JSP Date: 11/2/2010 4:59:56 PM
JSP : How can we import a Java package in a JSP page?

How can we import a Java package in a JSP page?

Following page directive is used to import Java package in a JSP page: &lt;%@ page import="....
Category: JSP Date: 10/30/2009 6:01:00 AM
JSP : How can I implement a thread-safe JSP page?

How can I implement a thread-safe JSP page?

You can make your JSP page thread-safe by having them implement the SingleThreadModel interface. Thi....
Category: JSP Date: 10/30/2009 5:54:43 AM
JSP : What are the life-cycle methods of JSP?

What are the life-cycle methods of JSP?

JSP page is processed into a servlet class which implements the HttpJspPage interface of the javax.s....
Category: JSP Date: 9/17/2009 6:38:31 AM
JSP : What approaches are used for Session Management in JSP ?

What approaches are used for Session Management in JSP ?

Following approches can be used for Session Management in JSP: 1) Cookies: Cookies are small text....
Category: JSP Date: 9/17/2009 6:24:36 AM