tags:

views:

158

answers:

3

Hi,

I'd like to ask if there is in the JSP events such as the swing (eg: ActionEvent)?

+1  A: 

No. There are not.

If you want something similar (not equal), you could give JSF a try for your Java based web applications.

Pablo Santa Cruz
A: 

If you like Swing programming and want to continue this paradigm even in Web applications then I suggest you take a look at Wicket.

kazanaki
A: 

Events on the client side are to be handled by javascript. If you need to send any information back to the server, use AJAX or a <form>.

geowa4