The response.sendRedirect("……..”); is the response implicit object to redirect the browser to the different resource
Skill/Topic: Programming ConstructsA) TrueB) False
Skill/Topic: Programming ConstructsA) TrueB) False
Latest Answer : TrueThe action element enables a JSP page author to generate HTML for downloading the Java Plug-in, if it is not installed, and executing an applet. Specifically the action generates the OBJECT element for Internet Explorer or the EMBED ...
When u try to redirect a page after you already have written something in your page, the error encountered is “Response has already been committed error” or popularly called 402 error.
Skill/Topic: Programming ConstructsA) FalseB) True
Which of the following statements is true regarding the access to the information provided by the ServletContext
Skill/Topic: Programming ConstructsA) Information such as the names of the parameters passed in by the client, the protocol (scheme) being used by the client, B) The names of the remote host that
Java Server Pages technology commonly called JSP technology offers the following advantages(Multiple choice) :-
Skill/Topic: FundamentalsA) Separation of dynamic and static content. B) Support for scripting and tags C) Reuse of components and tags. D) Web access layer for N-tier enterprise application architecture
All the ___________ data is kept at the application server ___________ data is kept at the web server
Skill/Topic: FundamentalsA) dynamic, static B) static, dynamic C) HTML, Servlet D) Servlet, HTML
The concept used by the stock trading websites where, data needs to change regularly on the clients application or browser , without intervention from client is called _________________
Skill/Topic: FundamentalsA) Server Side Push
Under JSP 1.0 , the implicit object which can be used for reference is “this”. It is used to refer to the ______________
Skill/Topic: FundamentalsA) Servlet generated by the JSP page B) Servlet called by the jsp page C) Calling the previous JSP page D) None of the above
Which of the following are the implicit objects in JSP 1. Application, out 2. config, exception 3. page, pageContext 4. request, response, session
Skill/Topic: FundamentalsA) 1, 2 B) 2, 3 C) 2, 3, 4 D) 1, 2, 3, 4
Skill/Topic: FundamentalsA) TrueB) FalseExplanation: We can get data from the form object in jsp
Latest Answer : we can process the data using request.getparameter("param") ...