arnaldo silveira wrote:hi,
I can pass a value from a jsp to a class without using servlet?
for example:
jsp
I need to send that value to a class I do not want to use servlet
anybody help?
thanks
Not sure I understand why you are having a problem here...although using scriptlet code in JSP's is inadvisable, you can put any Java code you want to in a scriptlet. You have the whole java library at your disposal between those little <% and %> tags...you aren't limited to using only classes in the servlet/jsp API's or anything. Just instantiate an instance of the class whos method you want to call and pass the
string to it...