to pass memcod with query string in window.open() method
-
hello seniors, i have to pass memcod with query string on link button's click and also have to open a popup on which i'll upload picture. i want to open that popup using window.open() javascript method please help me its very urgent..... Mayank Pathak
-
hello seniors, i have to pass memcod with query string on link button's click and also have to open a popup on which i'll upload picture. i want to open that popup using window.open() javascript method please help me its very urgent..... Mayank Pathak
function modalWin(url) { var windowWidth = document.documentElement.clientWidth; var windowHeight = document.documentElement.clientHeight; if (window.showModalDialog) { window.showModalDialog(url,'Agent Rala Time','dialogWidth:'+ windowWidth +';dialogHeight:'+ windowHeight ); } else { window.open(url,'Agent Rala Time','height='+ windowHeight +',width='+ windowWidth +',toolbar=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no ,modal=yes'); } }
-
hello seniors, i have to pass memcod with query string on link button's click and also have to open a popup on which i'll upload picture. i want to open that popup using window.open() javascript method please help me its very urgent..... Mayank Pathak
-
Attach a javascript function on the linkbutton click.And in that function use window.open.Also pass the querystring in the url.
Cheers!! Brij
thnx for the reply sir.. but i need a code snippet... plz explain me with an example thanks a lot