1.

What is the difference between forward () and sendRedirect () functions in Servlet? Explain

Answer»
 FORWARD()sendRedirect()
1.SERVER-side redirect.Client-side redirect.
2.Redirect is at the server end, not visible to the client.Redirection is at the client end and visible to the client.
3.Original URL remains intact.Original URL changes.


Discussion

No Comment Found