How can i connect from jsp to servlet page
Answers were Sorted based on User's Feedback
Answer / venkatesh
By calling formaction
<form action="Name Declared in web.xml" method="post">
Is This Answer Correct ? | 37 Yes | 11 No |
Answer / prasanth setty
Using <jsp:include> or <jsp:forward> we can dispath the
request form a jsp to servlet.
<jsp:include file="Actionservlet"/>
Is This Answer Correct ? | 11 Yes | 4 No |
Answer / gururajan j
<form action='<c:url value="servlet.do"/>' method='post'>>
Is This Answer Correct ? | 6 Yes | 1 No |
Answer / ealngo
<form action ='<c:url path value="servlet.do"/>,method='post'>>
Is This Answer Correct ? | 3 Yes | 3 No |
Why is used in jsp?
How can we forward the request from jsp page to the servlet?
Explain the <jsp:param> action?
Explain what is jsp ?
Why do we need custom tags in jsp?
What is jsp index?
why we use jsp as view
3 Answers NCS, Scope International,
What are jsp lifecycle methods?
What is cookie with example?
How to send data from jsp to jsp?
What is declaration statement?
What is attribute in jsp?