Last post Oct 22, 2008 02:24 AM by susmitadeb
Member
49 Points
115 Posts
Oct 21, 2008 11:29 PM|bluecode|LINK
Participant
804 Points
440 Posts
Oct 22, 2008 12:59 AM|pavankumarkavety|LINK
u can do it like this..:)
{
window.open(
}
910 Points
221 Posts
Oct 22, 2008 01:43 AM|sharpeffect|LINK
<script language="javascript" type="text/javascript"> <!-- function popitup(url) { newwindow=window.open(url,'name','height=200,width=150'); if (window.focus) {newwindow.focus()} return false; } // --> </script>
<a href="~/default4.aspx" onclick="return popitup('~/default4.aspx')">Update</a>
Change the page name and querystring according to your specs.
Hope this will work.
Oct 22, 2008 01:49 AM|bluecode|LINK
Oct 22, 2008 01:55 AM|pavankumarkavety|LINK
onclick
741 Points
182 Posts
Oct 22, 2008 02:24 AM|susmitadeb|LINK
Hi bluecode ,
You can refer the below link :
http://www.javascript-coder.com/window-popup/javascript-window-open.phtml
Hope this will help you.
Member
49 Points
115 Posts
How to set popup window size?
Oct 21, 2008 11:29 PM|bluecode|LINK
Participant
804 Points
440 Posts
Re: How to set popup window size?
Oct 22, 2008 12:59 AM|pavankumarkavety|LINK
u can do it like this..:)
function openpopup(){
window.open(
"EditRequest.aspx",'windowname1','width=650, height=700,toolbar=no,status=no');}
Participant
910 Points
221 Posts
Re: How to set popup window size?
Oct 22, 2008 01:43 AM|sharpeffect|LINK
Member
49 Points
115 Posts
Re: How to set popup window size?
Oct 22, 2008 01:49 AM|bluecode|LINK
Participant
804 Points
440 Posts
Re: How to set popup window size?
Oct 22, 2008 01:55 AM|pavankumarkavety|LINK
onclick
="openpopup()"Member
741 Points
182 Posts
Re: How to set popup window size?
Oct 22, 2008 02:24 AM|susmitadeb|LINK
Hi bluecode ,
You can refer the below link :
http://www.javascript-coder.com/window-popup/javascript-window-open.phtml
Hope this will help you.