Ashish,

There's a built-in method you can use to return to the calling jsp.

Try return (mapping.getInputForward());

from your Action class.

hope that helps,
-Brian


On Mon, 2006-04-03 at 10:19 -0700, Ashish Kulkarni wrote:
> hi
> I am trying to learn AJAX and struts together (will
> use some standard solution later)
> This is what i am doing, 
> In my jsp i have 2 text fields FirstName and LastName
> when the user enters FirstName and hits enter i call a
> javascript which creates XMLHttpRequest objects, and
> calls a Action class using GET , it send parameter as
> name  some thing like this
> GetNameAction.do?first=name
> 
> this Action class then populates last name, 
> In servlet i would just do 
> PrintWriter out = response.getWriter();
> out.println(last); and works fine, but i dont want to
> do it that way,
> In Struts, i want to populate ActionForm, and then
> refresh jsp page
> 
> How do i do it
> 
> Ashish
> 
> __________________________________________________
> Do You Yahoo!?
> Tired of spam?  Yahoo! Mail has the best spam protection around 
> http://mail.yahoo.com 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 
-- 
Brian M. Long
Middleware Services, Virginia Tech
"Ancora Imparo (I am still learning)" - Michaelangelo, age 87



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

Reply via email to