The element forwards the requestobject containing the client request information fromone JSP file to another file. The target file can bean HTML file, another JSP file, or a servlet, as longas it is in
Latest Answer: the first executes on server side and second executes on client side. ...
Both the tag includes the information from onepage in another. The differences are as follows:: This is like a functioncall from one jsp to another jsp. It is executed ( theincluded page is executed and
JSP actions are XML tags that direct theserver to use existing components or control thebehavior of the JSP engine. JSP Actions consist of atypical (XML-based) prefix of "jsp" followed by acolon,
Latest Answer: JSP actions are use to constructs in XML syntax to control the behavior of the servlet engine. You can dynamically insert a file, reuse JavaBeans components, forward the user to another page, or generate HTML for the Java plug-in. Available actions include: ...
Latest Answer: There are 4 scopes1) page => only for that jsp page2) request => available for forwarded page3) session => till session ends4) application => thorought the whole application ...
Public class Counter{private int counter;public Counter(){counter=0;}public synchorized int getCounter(){return counter;}public synchorized int setCounter(){counter=0;return counter;}public synchronized int incCounter(){return(++counter);}}A web container should dispatch multiple client requestsrequests with the following page directive:what should be the value for the isThreadsafe argument and why?
Latest Answer: when a java Bean has to be used in a page only ,during the execution of page we must use page scope. ...
Latest Answer: ServletContext: Gives the information about the containerPageContext: Gives the information about the RequestJaved.N ...
HiWhat is the structure of MVC1?What is the structure of MVC2?Clearly i want to know jsp,servlets...which acts as view,controller,model in both
How to create dynamic rows and column using Jsp+java script. Ex. i specified 10 rows and 5 columns at run time. How to create using javascript.
Latest Answer: Custom tag is used to design our own tag using taglib directive.JavaBean used to define a core java manipulation.Initialization the data using setter and getter method. ...
View page << Previous 1 2 3 [4] 5 6 7 8 9 10 Next >>

Go Top