javascript window.open feature.

  • Thread starter Thread starter Jensen bredal
  • Start date Start date
J

Jensen bredal

Hello,
i want my aspx page to open minimized with some predefined with and height
and
the always on top feature.

The problem is that IE does not seem to support this. Only nestcape does.
alwaysRaised=1 only works for netscape.

How can i create IE window "always on top"?


Man
 
Great

Many thaousands thanks.

JB


Karl Seguin said:
You should be able to use a Modal Dialog, check out

window.showModalDialog (not supported in netscape, so you'll need to
detect
the browser and use the appropriate method):
http://msdn.microsoft.com/workshop/author/dhtml/reference/methods/showmodaldialog.asp

Karl

--
MY ASP.Net tutorials
http://www.openmymind.net/ - New and Improved (yes, the popup is
annoying)
http://www.openmymind.net/faq.aspx - unofficial newsgroup FAQ (more to
come!)
 
why does the cursur show the "busy" icon when i lunch the new window?
This keeps onas long as the window is openend.


Many thanks
JB
 
A modaless dialog prevents the user from giving focus to the underlying
window....that's sorta the point, and its also how you achieve it always
being on top ('cuz they can't click the main window to bring it back into
focus)....you shouldn't have the busy icon when ur mousing over the popup
though....

Karl
 
Right , this makes sens. This should also mean, that the pop up window can
not exist without(after parent unloaded) the parent window.

I need my application to open a browser in th botton of the screen , so user
can stil work with other
program. I do not want to have to windows.

Can this be done?

Many thanks
JB
 
Back
Top