use javascript://if you want to keep viewstate
window.opener.document.forms[0].submit();//if you want a simple refresh
window.opener.location.href = window.opener.location.href;
//or
window.opener.location.href = window.opener.location.href + "?t=" + Math.random();