Thursday, April 26, 2012

Open new page as a popup window in asp.net



<script type="text/javascript" language="javascript">
        function changeScreenSize(w, h) {
            window.resizeTo(w, h)
        }
</script>

call this script at body onload
<body onload="changeScreenSize(500,300)" >

</body>

0 comments:

Post a Comment