Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

refresh the parent frame 1

Status
Not open for further replies.

DotNetGnat

Programmer
Mar 10, 2005
5,548
IN
Hi Guys,

I have a page which consists of a frameset. Kind of a menu items frame and a content frame. Now on one of the content pages i have a table display(which actually is used for recordset display).

Now i have a link on this content page which when clicked open a new page (deletes some of the records in the background) and confirms the user about their action and closes the window. Now the user is back the content page but the deleted records still show in the table because the content frame did not get refreshed/reloaded.

How and when can i reload the content page during this deletion process.

thanks for any input.

-DNG
 
i would probably call this after the items are deleted, but before the popup window closes (call from popup window):

Code:
opener.frames['YourContentFrame'].reload(true);



*cLFlaVA
----------------------------
[tt]"quote goes here"[/tt]
[URL unfurl="true"]http://www.coryarthus.com/[/url]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top