hello how do i create a pop up and how can i set the size etc. ?
+4
A:
There are a few options. I'd suggest going with an existing popup control, such as:
- ASP.NET AJAX Popup extender (free)
- Telerik RadWindow (commercial but good)
You could also consider tying in clientside modal windows, such as the jQuery UI dialog, which may work well if you're using ajax.
KP
2010-02-22 14:09:28
the jquery BlockUI plugin is definitely the way to go
jmein
2010-02-22 14:13:19
also a good one yeah..
KP
2010-02-22 14:13:45
+2
A:
use javascript like this:
window.open("whatever.aspx", "window_name", "width=500,height=500")
Ray
2010-02-22 14:11:05
A:
What you could also always do is not "Create" a new popup window but using some CSS, you can show an overlay and show a window like . Which is what lightbox does.
PieterG
2010-02-22 14:24:28