To tell the truth you seem to be duplicating to logic normally seen in a <form method="GET">. It seems that you have two ways to fire your search:
1. onActivate - This is where you are getting request parameters which were passed to you from another page (or maybe even this page) 2. Search form is posted - Here you are using tapestry's select / textField to populate form components For scenario 1, use @RequestParam or request.getparameter() in an onActivate method For scenario 2, tapestry will auto populate your variables If you populate the same render variables in both cases, you can share the rest of the rendering behaviour. -- View this message in context: http://tapestry.1045711.n5.nabble.com/How-to-remove-query-parmeter-from-url-string-tp5716922p5716939.html Sent from the Tapestry - User mailing list archive at Nabble.com. --------------------------------------------------------------------- To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org For additional commands, e-mail: users-h...@tapestry.apache.org