cancel
Showing results for 
Search instead for 
Did you mean: 

Refreshing a page

Former Member
0 Kudos
146

Hi,

I have a page with 4 frames inside and with another pages in these frames.

When I process data entered in form in one of a frame I need to redirect in same frame to another page ( this is not problem ... navigation->goto_page(..) ), <b>but at same time I need a refresh a page in another frame (reload).</b>

How can I do this ?

Thank you.

Marian

Accepted Solutions (1)

Accepted Solutions (1)

thomas_jung
Developer Advocate
Developer Advocate
0 Kudos

A little JavaScript should do the trick:

javascript:window.frame(Main).location.reload(True);"> 

...Where the name of the name is Main.

You could attach this JavaScript code to an OnClientClick event or in your server event set a flag. Test for this flag in your view/page coding and generate the JavaScript call based upon that flag.

Answers (0)