I would suggest using Fireworks 4's nice popup menu feature. It writes the javascript for you, which you can then manipulate through code if you wish to make the menu content dynamic. Although it takes a bit of massaging to get it to function seamlessly with your pages, it's definitely the nicest solution I've found.
if you don't have/can't afford Fireworks though, then the easiest way to do a popup window is simply to write a javascript function
function OpenPopup()
{
window.open(url, title, options)
}
and call it eitehr from a button click event on your page or by adding an attribute to the button in the code behind (assuming thats how you want it triggered).
The options part of the window.open will let you specify whether you want a toolbar, addressbar, height, width, resizable, etc. There's alot of documentation out there, but I'd check out
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.