-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
What do you understand by JSP Actions?
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, followed by the action name followed by one ormore attribute parameters.There are six JSP Actions:
-
What is the difference between and response.sendRedirect(url),?
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 the same application context as theforwarding JSP file. sendRedirect sends HTTP temporary redirect response tothe browser, and browser creates a new request to gothe redirected page. The response.sendRedirect...
-
-
How to implement pagination from database level.
Please provide me any sample source code for the same
JSP Interview Questions
Ans