Forum Moderators: open
Venkatesh
You might try adding a form refresh to the body onload.
var sURL = unescape(window.location.pathname);
window.location.replace( sURL );
window.opener.loction.reload();
window.location.reload( true );
document.forms[0].submit();
in body OnLoad, but this is fetching data from server and refreshing the complete page. Is there a way to refresh only the browser, because one thing I found was when I click on the back browser and do a "view source" I am able to see the valid data as part of the source in the page, but the data being displayed in the combo box is invalid in JSP.