i need open pop up in asp.net using post Method and window.open to rezise te new windows.
my code:
---- open the pop up ---
function mdpbch(URL) {
child = window.open(URL, "passwd","dependent=1,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=600,height=475");
child.location.href = URL;
if
…