Send the response to a different frame

2004-03-02 Thread Ruben Pardo
Hi , 
I've got a page with 3 frames, the action, forward  to
reload always the page with the 3 frames. If there is
an error, i want to reload only one frame, how can i 
send the response  
from the action to only one frame??
thanks

___
Yahoo! Messenger - Nueva versión GRATIS
Super Webcam, voz, caritas animadas, y más...
http://messenger.yahoo.es

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



RE: Send the response to a different frame

2004-03-02 Thread Kransen, J.
Hi, 

The one page you always want to reload can contain this tag:
body onload=parent.navleft.location.href='navleft.jsp';
with which you fill the another frame(s). 

If you make this tag conditional, then you can control the other frame to be
reloaded or not:

(pseudo-code:)
if (error)
body
else
body onload=parent.navleft.location.href='navleft.jsp';

Hope this is helpful


-Oorspronkelijk bericht-
Van: Ruben Pardo [mailto:[EMAIL PROTECTED] 
Verzonden: dinsdag 2 maart 2004 11:51
Aan: [EMAIL PROTECTED]
Onderwerp: Send the response to a different frame

Hi , 
I've got a page with 3 frames, the action, forward  to
reload always the page with the 3 frames. If there is
an error, i want to reload only one frame, how can i 
send the response  
from the action to only one frame??
thanks

___
Yahoo! Messenger - Nueva versión GRATIS
Super Webcam, voz, caritas animadas, y más...
http://messenger.yahoo.es


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