Ken <[EMAIL PROTECTED]> writes:

> when i click on the label it doesnt sys.out but no error is shown.  Any ideas?
> also the form of the url to hit a  function named joe on a bean with url
> Car.action is
> http://localhost:8080/CarApp/Car.action&joe ??????/
> Is this correct?

Hi Ken,

Your url has a little mistake in it.

Car.action&joe should be Car.action?joe

The '?' marks the beginning of the request parameters where in your case 'joe'
is the name of your event (method on the action bean). If you want to append
additional parameters to your url you'd have to use the '&', e.g:

Car.action?joe=&address=atHome&wife=none

Cheers,

Lars







-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
Stripes-users mailing list
Stripes-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/stripes-users

Reply via email to