Re: Rendering javascript using Action

2004-09-29 Thread brenmcguire
> To: <[EMAIL PROTECTED]> > Sent: Wednesday, September 29, 2004 12:17 PM > Subject: Re: Rendering javascript using Action > > > > Use an Action as you use a servlet. That is, in the "execute" method there > > is the parameter "HttpServletResponse response"

Re: Rendering javascript using Action

2004-09-29 Thread Antony Paul
There are no JSPs. All HTML. This is retrieved by another site. rgds Antony Paul - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, September 29, 2004 12:17 PM Subject: Re: Rendering javascript using Action > Use an Action as you use

Re: Rendering javascript using Action

2004-09-28 Thread brenmcguire
Use an Action as you use a servlet. That is, in the "execute" method there is the parameter "HttpServletResponse response". Use it and render you HTML page. You can then "return null;" (it means "forward to nowhere") so your HTTP response will be made only of your text built inside the Action. But