| Author: sappi 07 Oct 2008 | Member Level: Gold | Rating: Points: 3 |
window.open is the method used to open the pop up like aspx pages and window.showdialog is used to open the dialog boxes
if u want to write the code in the codebehind page write like this
Page.ClientScript.RegisterClientScriptBlock(this.GetType(), "OpenWindow","<script language =javascript>window.open('FETextEditor.aspx')</script>" );
|
| Author: karthikeyan-The Great 07 Oct 2008 | Member Level: Gold | Rating: Points: 3 |
function mypopup() { mywindow = window.open ("http://www.dotnetspider.com", "mywindow","location=1,status=1,scrollbars=1, width=100,height=100"); mywindow.moveTo(0,0); }
|
| Author: Manindra Upadhyay 07 Oct 2008 | Member Level: Gold | Rating: Points: 2 |
http://www.javascript-coder.com/window-popup/javascript-window-open.phtml
http://www.w3schools.com/HTMLDOM/met_win_open.asp
|