using routes with forms...

That should work, but you need to have that route first, before any other route that will catch the params and build a URL. I would do map.connect 'find_place/:zipcode', :controller => 'find_place', :action => 'by_zip', :zipcode => /[0-9]{5}/ That will match your route only if the zip is a string of 5 digits. -Jason

Sergio Ruiz wrote: