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";
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