tags:

views:

40

answers:

1

Hello everyone how can i refresh a jsp page from other jsp page i have a jsp (jsp1) page that hold 2 frame of jsp i need that the jsp (jsp2) will refresh the other jsp (jsp3)

and another question same one as above only with servlet how can i make a servlet page refresh a jsp page

+3  A: 

Refreshing is a purely client-side concept. So you must do it with javascript:

location.reload(true)
Bozho