Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to pass three values from jsp to another class file, without using servlet. Can someone help me?

share|improve this question
3  
Please explain requirements in detail, this can be done btw – zaffargachal Oct 22 '12 at 10:02
what have you tried? – MaVRoSCy Oct 22 '12 at 10:03
2  
You can just instantiate the class in a scriptlet inside the JSP, although I do not recommend that... – home Oct 22 '12 at 10:03
1  
@MaVRoSCy I think What have you tried? is best provided with a link. – Andrew Thompson Oct 22 '12 at 10:09

closed as not a real question by Brian Roach, Tichodroma, home, jschoen, David Kroukamp Oct 22 '12 at 18:35

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

2 Answers

You can use like this

<html>
<head>
  <title>Using Class in JSP</title>
</head>

<body>
<%@ page import="package.*" %>
<%
    YOURCLASS object = new YOURCLASS();
    object.yourmethod();
%>
</body>
</html>

For any example regarding this Refer the Link it will help you.

share|improve this answer

you want to pass values to .class file means u want something like java class not servlet in which u want parameters to pass...

Just create one java class and a method in it and call that method in your jsp page and pass parameters into in...and store result as required...

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.