Re: Action not found
Thomas Vandahl <[email protected]>
| Newsgroups | gmane.comp.jakarta.turbine.user |
|---|---|
| Message-ID | <[email protected]> |
[email protected] wrote: > I'm facing a very strange behaviour in our Turbine 2.3.2 application. We're having a screen where the user can choose different parameters. After choosing we redirect the screen to another one. It works perfectly on our development environment (Java 1.4.2 and Tomcat 5.5). In the productive environment (IBM WebSphere 6) it sometimes works and sometimes not. It seems like the java action we use to redirect to the different screens is not found. > Here's our code: > <BUTTON class="image" type="submit" name="eventSubmit_doAusr" onClick="search()"> > <IMG src="$content.getURI('images/ok.gif')"/> > </BUTTON> I remember some strange effects when using <button> elements together with Internet Explorer. IE sends all buttons in the request, not just the one that is clicked and Turbine has a hard time to find out which action to perform. Try to use an <input type="submit"> element instead and check if that solves your problem. Hope that helps Bye, Thomas.