Tuesday, March 27, 2012

Open a new Page on another or same tab

To open in a new tab
window.open('TestPage.aspx', '_blank');
OR
window.open('TestPage.aspx', '_blank',, "width=400,height=200,menubar=no,toolbar=no" );



To open in the same tab
window.location = "TestPage.aspx";

No comments:

Post a Comment