Durham David R Jr Contr 805 CSPTS/SCE wrote the following on 9/15/2004 1:41 PM:

Ok, let me see if I've got it.

In a JSP, you have exactly this code (along with other unimportant stuff
before it and after it):

        function swapAction( formName, action) {
            formAction = document.getElementById( formName ).action;
            newAction = '<html:rewrite page="/'+action+'.do"/>';
            document.getElementById( formName ).action = newAction;
        }

And this code then gets sent to a browser (shows up in view source) as
the following:

        function swapAction( formName, action) {
            formAction = document.getElementById( formName ).action;
            newAction = '/nda/'+action+'.do';
            document.getElementById( formName ).action = newAction;
        }


Is that right?

correct.


-- Rick

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Reply via email to