How are Servlets and JSP Pages related?
Answers were Sorted based on User's Feedback
Answer / janet
Jsp pages are focussed around HTML (or XML) with java codes
and JSP tags inside them.When a web server that has JSP
support is asked for a JSP page,it checks to see if it has
already compiled the page into a servlet.Thus ,JSP pages
become servlets and are transformed into pure Java and then
compiled,loaded into the server and executed.
| Is This Answer Correct ? | 6 Yes | 1 No |
Answer / ambika
Relationof servlet and JSP is
RequestDispatcher reqdip=req.RequestDispatcher("sum.jsp");
forward.req(req,res)
| Is This Answer Correct ? | 3 Yes | 6 No |
How many tags are provided in jstl?
how to maintain sessions in jsp?can you tellme the methods.
16 Answers IBM, Scope International, TCS,
What is pagescope in jsp?
how can i add properties in dynamic text fields using .js file?
How does el search for an attribute?
What are context initialization parameters?
how to pass values to a function fron input tags, and how to display that values in that called function
Can you call jsp from servlet?
Why do we need custom tags?
When does a container initialize multiple jsp / servlet objects?
Which jsp lifecycle methods can be overridden?
What is jsp include tag?