zohab Posted September 27, 2012 Share Posted September 27, 2012 Hi , I am using frameset with 2 frames in left and right side of the page. I have form in right side frame and when I submit the right side frame then I want only right side frame should be refresh not whole page. I tried following but not working for me. index.jsp <FRAMESET COLS="17%,80%"> <FRAME SRC="treemenu.jsp" name="treemenu" id="treemenu"> <FRAME SRC="treeOperations.jsp" name="treeoperations" id="treeoperations"> </FRAMESET><noframes></noframes> treeOperations.jsp //alert("The operation was successfully."); //top.location.href="index.jsp"; window.location.href="treeOperations.jsp"; //window.treeoperations.location.reload(); //parent.treeoperations.location.reload(); //parent.location.reload(); Any solution ? -Thanks Zohaib. Link to comment https://forums.phpfreaks.com/topic/268845-refresh-right-side-frame-in-frameset/ Share on other sites More sharing options...
zohab Posted September 27, 2012 Author Share Posted September 27, 2012 Problem is solved using information on google search articles regarding frameset Link to comment https://forums.phpfreaks.com/topic/268845-refresh-right-side-frame-in-frameset/#findComment-1381278 Share on other sites More sharing options...
ManiacDan Posted September 27, 2012 Share Posted September 27, 2012 You shouldn't be using frames in the first place. Link to comment https://forums.phpfreaks.com/topic/268845-refresh-right-side-frame-in-frameset/#findComment-1381289 Share on other sites More sharing options...
Adam Posted September 28, 2012 Share Posted September 28, 2012 You shouldn't be using frames in the first place. Very true, but if the OP is/was working on an existing system he might not have that choice. Link to comment https://forums.phpfreaks.com/topic/268845-refresh-right-side-frame-in-frameset/#findComment-1381539 Share on other sites More sharing options...
ManiacDan Posted September 28, 2012 Share Posted September 28, 2012 Yeah, I guess so. Plus, from the filenames it looks like an old school file explorer application. It would be more trouble than it's worth to rewrite it. Link to comment https://forums.phpfreaks.com/topic/268845-refresh-right-side-frame-in-frameset/#findComment-1381557 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.