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 disable scripting?
What is a jsp page?
How do I create a dynamic web project?
Which attribute specifies a jsp page that should process any exceptions thrown but not caught in the current page? : Citibank
What are custom tags?
Can I declare a java class in jsp?
What are the different types of jstl tags?
What are jsp elements?
How can I use jsp in the mvc model?
What is an api with example?
How is jsp include directive different from jsp include action. ?
Explain client and server side validation?