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 |
how to set class path in java
Explain static method?
What is auto-flush attribute?
What is an expression in jsp?
What are the directives in jsp?
How many jsp scripting elements are there and what are they?
How to delete a cookie in jsp?
What is jstl used for?
How to restrict page errors display in a JSP page?
What is the use of jstl tags in jsp?
What is jsp-config in deployment descriptor?
What is jsp scriptlet?