How to Open PopUp Window
write this script on that aspx page from which the page is redirect to popup window <script type="text/javascript"> function popup(url,width,height) { var left = (screen.width - width) / 2; var top = (screen.height - height) / 2; var params = 'width=' + width + ', height=' + height; params += ', top=' + top + ', left=' + left; params += ', toolbar=no'; params += ', menubar=no'; params += ', resizable=yes'; params += ', directories=no'; params += ', scrollbars=yes'; params += ', status=no'; params += ', location=no'; newwin = window.open(url, 'd', params); if (window.focus) { newwin.focus() } return false; ...