venkatesh
jsp scope variables
1 Answer(s)      3 years and 7 months ago
Posted in : JSP-Interview Questions

View Answers

October 12, 2009 at 11:49 AM


Hi Friend,

Scope variables are basically used for sharing the data.

If you use page scope,the JSP object can be accessed only from within the same page where it was created.

If you use request scope, the jsp object can be accessed from any page that serves the request.

If you session scope, the jsp object is accessible from pages that belong to the same session from where it was created.

If you use application scope,the jsp object can be accessed from any page across the application.

Thanks









Related Pages:
jsp scope variables - JSP-Interview Questions
jsp scope variables  what is the importance of page,session,request n application scope variables in JSP?Am not understanding where which scope... in advance.  Hi Friend, Scope variables are basically used for sharing
Jsp Scope Variables - JSP-Interview Questions
Jsp Scope Variables  what is the importance of page,session,request n application scope variables in JSP?Am not understanding where which scope variable we have to use in programs..let me know when we have to use them seperately
Jsp Scope Variables - Java Interview Questions
Jsp Scope Variables  what is the importance of page,session,request n application scope variables in JSP?Am not understanding where which scope... in advance.  Hi Friend, JSP Scope Variables: Page scope-It makes
Session scope
with example plzzzzzzz help me...   JSP Scope Variables: Page scope-It makes the data available to the given page. Request Scope-It shares the data.... Session scope-It limits the data to the given user, it is accessible from any
Setting Variable Scope
Setting Variable Scope In this section we will learn about the different scope of the JSP variables. While developing the program you can store the variables... scope only available to that particular page. In JSP we have four scopes
scope in jsp
scope in jsp  could anyone tell me a practical example to understand the scope(page, application, session etc.) in jsp. ALso let me know when to use what scope. it is bit confusing
Variables Scope in SQL Procedure
Variables Scope in SQL Procedure       Variable Scope in SQL Procedure is used to define the scope of a variable used in SQL. Understand with Example
Variables Scope in SQL Procedure
Variables Scope in SQL Procedure         Variable Scope in SQL Procedure is used to define the scope of a variable used in SQL. Understand with Example
Variables
Java Notes: Variables Variables are places in memory to store values. There are different kinds of variables, and every language offers slightly... types (String, Color, JButton, ...). Java object variables
Flex Variable Scope
Scope of the variable defines the accessibility of the variable across... of the class or function is declared as global. Variables defined inside a function or class is assigned the scope of the function or class itself
Variables in a Servlet - JSP-Servlet
Variables in a Servlet   Hi, I'm using some variables in a servlet1 (which i get from a jsp, like "String x = request.getParameter("xyz");"). the servlet response is a jsp page which after taking some more parameters gets
how to initialise variables in jsp?
how to initialise variables in jsp?   1. what is the problem in the folloing jsp <%@ page import="net.viralpatel.struts.helloworld.form.LoginForm" %> <%@ page language="java" contentType="text/html
assignment of variables - JSP-Servlet
page on the server. The loginPage,jsp should something like.../jsp/ Thanks
Using Beans And Page Scope
Using Beans And Page Scope          The scope in which the Bean exists and the variable named in id is available. The  default value of scope
Using Beans And Request Scope
Using Beans And Request Scope          The scope in which the Bean exists and the variable named in id is available. The  default value of scope is page
set cookieless session variables in jsp
set cookieless session variables in jsp  I want to know how to set cookieless session variables in jsp, because when I run my application multiple... that . So, please tell is it possible in jsp to use cookieless session variables
Using Beans And Session Scope
Using Beans And Session Scope          The scope in which the Bean exists and the variable named in id is available. The  default value of scope is page. We
Using Beans And Application Scope
Using Beans And Application Scope          The scope in which the Bean exists and the variable named in id is available. The  default value of scope is page
Using Beans And Session Scope
use the scope attribute to specify additional places where bean is stored. In jsp...Using Beans And Session Scope          The scope in which the Bean exists
pasing variables in jsp file - JSP-Servlet
pasing variables in jsp file  How can more than one pages of jsp files share variables and how can one pass local variables from one jsp file to another jsp file?  Hi Friend, To pass variables from JSP file
PHP Variable Scope
. Scope of Variables in PHP with Example: <?php $a=34; { echo "...PHP Variable Scope: In every language every variable has a scope, may be within a block or within the whole program etc.  Generally the scope
how to get javascript variables into jsp - JSP-Servlet
how to get javascript variables into jsp  How to pass variables from java script into jsp page  Hi Friend, Try it: 1)pass.jsp: var msg="Hello World" window.location.href="show.jsp?value=" + msg
Local/Instance/Class Variables
the program stops. Scope/Visibility Local variables... Java NotesLocal/Instance/Class Variables There are three kinds of Java variables: Local variables are declared in a method, constructor, or block
Variables
Variables  What are the difference between Static variables, instance variables and local variables
Creating a Local Variable in JSP
then then the scope of the variables will be applicable in the whole page...Creating a Local Variable in JSP      In jsp when we have to create a method or variable we usually declare
JSP
JSP  what are the different scopes an object can have in a jsp page   JSP Scope Variables: Page scope-It makes the data available to the given page. Request Scope-It shares the data between all the components which
Scripting Variables in JSP Custom Tag
Scripting Variables in JSP Custom Tag   ... are variables that are available to the JSP page when any JSP page is called. Scripting... of JSP page we mean page level variables declared by the JSP page. You can access
Duplicated Session Variables
Duplicated Session Variables     ... a new session variable because it has been created by the JSP container for you... name. Consider we have declared a session variable true in jsp page <%@ page
Scope
Scope       A method's visibility is known as method scope. We can say that it defines whether a object can invoke as well as any subclass can override the method or not. The scope
How to use multiple declaration in jsp
How to use multiple declaration in jsp       JSP provide two ways to declare variables or methods: 1: Declare in scriptlet :- The scope of this kind of declaration
How to implement session variables - JSP-Servlet
parameter from a jsp page(x). it is stored in a variable in servlet as shown below. the servlet response is another jsp page(y). I should put the value of amp_num in the Jsp page (y). How should i do it? I'm trying using
DECLARATION IN JSP
DECLARATION IN JSP In this Section, we will discuss about declaration of variables & method in JSP using declaration tags. Using Declaration Tag, you can declare any number of variables & methods , as long as you end each
Passing java variables from JSP to Servlet - return null values
Passing java variables from JSP to Servlet - return null values  I want to pass some variables from a JSP page to a servlet. These variables are from... to get java variables from JSP tp servlet? If there is some error in my code
Error : javax.servlet.jsp.JspException: Cannot find bean org.apache.struts.taglib.html.BEAN in any scope
-jsp proram for adding data to the database. 500 Internal Server Error... in any scope at org.apache.struts.util.RequestUtils.lookup(RequestUtils.java:938
difference between session scope and request scope
difference between session scope and request scope   What is the difference between session scope and request scope when saving formbean
Mean by Bean Scope
Mean by Bean Scope  What is Bean Scope
scope of strategic management
scope of strategic management  What is the need and scope of the strategic management for an organisation or industry
JSP - Update displayed content & session variables when user clicks on a button - JSP-Servlet
JSP - Update displayed content & session variables when user clicks on a button  Hi, I'm trying to setup a form in which the user can click... JSP to do some internal check and then increment the value of a number
php variable scope
php variable scope  How can i access a variable from scope of another function
JSP - Update displayed content & session variables when user clicks on a button - JSP-Servlet
JSP - Update displayed content & session variables when user clicks... JSP to do some internal check and then increment the value of a number... combination of JSP and javascript would work since my knowledge base is in Java. Here
Servlet Scope object
Servlet Scope object  Which scope object(Request, Session, Application, Page) to use if (a) I want to maintain the user profile that the customer needs to enter in multiple pages. (b) I wish to validate the user id
scope of Java Swing in IT ?
scope of Java Swing in IT ?  Hi....... I am fresher ,now I m working in Java Swing developing desktop apps. I am confused abt use of Java Swing... the "How much scope of Java Swing in IT now ?" & wht should i do
Struts 2 Session Scope
Struts 2 Session Scope      ... displays a jsp page having the two text fields.  If the user enters nothing.... The JSP file contains a form, two text fields and a submit button. The <s
jsp - JSP-Servlet
JSP Scope Objects  What is Scope Object in JSP
getting variables
getting variables   how to get variables from servlet program to webservice program
Environment variables
Environment variables  How to set Environment Variables in JAVA 6 n Tomcat 6 CLASSPATH, JAVA_HOME, PATH, & CATALINA variables plzzz plzz help me
JavaScript Variables and Data types
 JavaScript Variables and Data types... will learn the basics of JavaScript Variables and Data types. JavaScript Variables.... These names are called variables.  Declaring and Initializing the Variables
Application scope variable inside ServletConfigListener
Application scope variable inside ServletConfigListener  Hi, The below code on your website states how to run a code at timed intervals. Suppose I want to set a application scope variable inside the run method in this code. How

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.