> > 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.

See, that's not what I get when I run it.


- Dave

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

Reply via email to