I have a button on my form that's suppose to submit the form. The script works on other forms, but not when I use it with Struts. Why would this be?
Created Feb 17, 2003
Ted Husted By default, the <html:submit> button is also named (surprise) Submit. To avoid conflicts, give the Submit button another name.
---
Struts in Action
<html:submit property="submitButton:/>
HTH, Ted.
Struts in Action