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 |
Why is it not recommended to use script elements in jsp?
Which implicit object is not available in normal jsp pages?
Is there a way to reference the "this" variable within a jsp page?
What is the purpose of <jsp:getproperty >?
Which jsp method cannot be overridden?
how to disable the expression language in a jsp?
What is include directive in jsp?
How does a jsp engine work?
Which one is correct order of phases in jsp life cycle?
Explain the action.
What is jsp servlet?
What information is needed to create a tcp socket?