Web page refresh problem

Hi,

How can I refresh the content of an iFrame in web??

Thanks in advance…

Subject: web page refresh problem

HiIt depends on from where you would like to refresh the frame. If you would like to refresh the frame from the same iframe I would create a button and have the web onclick event set to

window.location.reload( false );

If you would like to refresh a frame from the parent frame use the following

document.getElementById(‘idOfFrame’).contentWindow.location.reload(true);

This will work both in FF and IE.

I hope this solves your problems

Best regards

Olle