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 do you restrict page errors display in the JSP page?
What is pagecontext?
What is application scope in jsp?
Tell us about the jsp life cycle methods.
hi friends...i created sessions in my login page i can able to create a session but after loging out again i can able access the pages by its addresses. i think u may got problem if possible post me small example for login with sessions including database
What are the different types of jsp directive?
What is difference between jsp and jstl?
How we can disable session in jsp?
What is the difference in using request.getrequestdispatcher() and context.getrequestdispatcher()?
Explain the uses of <jsp:usebean> tag.
What is session setattribute?
How to print java variable in jsp?