프로그래밍/ASP.NET

새창에서 부모창 제어

Doonee 2013. 10. 16. 15:03
반응형

부모창 새로고침 하고 새창 닫기

Response.Write("<script>opener.parent.window.location.reload();self.close();</script>");   


부모창 지정한 URL로 이동하고 새창 닫기

Response.Write("<script>opener.parent.window.location.href='이동주소';self.close();</script>");