Click here to Skip to main content
15,911,141 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
how to display javascript popup window with own menubar,title bar in asp.net
Posted

Do u want to display popup window using Javascript?
 
Share this answer
 
in your .aspx page:

JavaScript
<script>
var win = window.open("someOtherPage.aspx", "myWindow", "titlebar=yes,menubar=yes");
</script>


If you want some control over this from codebehind, you can wrap the script tags in a literal control and set the visibility of the literal in codebehind.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900