If we may take a more civil tone, do you still feel this way? Why don't you just try to actually use this function:
function swapAction( formName, action) { formAction = document.getElementById( formName ).action; newAction = '<html:rewrite page="/'+action+'.do"/>'; document.getElementById( formName ).action = newAction; }
And then post your results.
As an example of working HTML it produces:
function swapAction( formName, action) { formAction = document.getElementById( formName ).action; newAction = '/nda/'+action+'.do'; document.getElementById( formName ).action = newAction; }
Which is EXACTLY what I what I expected and wanted. And when I use the fucntion, it swaps out the form action name with whatever newAction equates to. Works perfectly. Although I am giving Michael's SimpleDispatchAction a whirl today.
An example submit button calling the swapAction:
<html:submit onclick="swapAction( 'userSearchForm', 'userSearchPerform')">SEARCH</html:submit>
Works perfectly.
No hard feelings.
-- Rick
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]