pop-up window below other windows

  • Thread starter Thread starter buran
  • Start date Start date
B

buran

Dear ASP.NET Programmers,

I have a button which opens a pop-up window on top of the main windows when pressed. However, on the pop-up window, I have another button which again opens a pop-up window when pressed, but this time below the opener pop-up window. I want this third window opened on top of all windows. How can I accomplish this? Thanks in advance...

Burak
 
Check this?

showModalDialog Method

Creates a modal dialog box that displays the specified HTML document.

http://msdn.microsoft.com/workshop/author/dhtml/reference/methods/showmodaldialog.asp

Dear ASP.NET Programmers,

I have a button which opens a pop-up window on top of the main windows when
pressed. However, on the pop-up window, I have another button which again
opens a pop-up window when pressed, but this time below the opener pop-up
window. I want this third window opened on top of all windows. How can I
accomplish this? Thanks in advance...

Burak
 
Thank you Ken, but as far as I can understand, this method opens a modal
dialog box that cannot be minimized. Actually, I wonder whether there's a
way to accomplih this with window.open() method?

Buran
 
set the focus to the popup (window.focus) - this is what brings a browser window to the top.

-- bruce (sqlwork.com)
Dear ASP.NET Programmers,

I have a button which opens a pop-up window on top of the main windows when pressed. However, on the pop-up window, I have another button which again opens a pop-up window when pressed, but this time below the opener pop-up window. I want this third window opened on top of all windows. How can I accomplish this? Thanks in advance...

Burak
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top