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 don’t we need to configure jsp standard tags in web.xml?
Explain jsp:plugin action?
Explain the difference between include directive and include action in jsp?
What are the components that make up a tag library in jsp?
What is the use of Application Object and Session Object in JSP?
What do you know about writing custom jsp tags?
How can I implement a thread-safe jsp page? What are the advantages and disadvantages of using it?
How does a servlet communicate with a jsp page?
How to include static files in a JSP page?
Which package does a jsp api consist of?
How to ignore the el expression evaluation in a jsp?
How will you use jsp el in order to get the http method name?