adding action listener to a page

Hai all,In my JSp page i have a combo box and i want to add a value change listener to this combo. I don't want to use javascript so Which listener shall i use?
[175 byte] By [subrato_001a] at [2007-11-27 7:09:48]
# 1
any one have any solution please response me.
subrato_001a at 2007-7-12 19:01:14 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 2
Which framework are you talking about?
BalusCa at 2007-7-12 19:01:14 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 3
i am not using any framework it is a simple jsp page. here one combo is there and a submit button in a form. on clicking on submit button request is going to next page and on selecting different items in combobox different data is displaying in the same page. so now how can i proceed...
subrato_001a at 2007-7-12 19:01:14 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 4
If you don't want to use JS, then write your own solution. Store the old value in a hidden input element or even in session or so.
BalusCa at 2007-7-12 19:01:14 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 5
In responding to client side events on an HTML page you can't get away from javascript. Java is not running on the client machine. So if you want the screen to respond when the user selects an option from the dropdown box, then you have to use javascript because thats all there
evnafetsa at 2007-7-12 19:01:14 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...