Link to home
Start Free TrialLog in
Avatar of Weller0123
Weller0123

asked on

bring a window to the front...

I'm opening a pop up window with info displayed(as in the code below)... This is currently working but when I enable SmartNavigation the window opens but the main window jumps back in front of the pop-up...

Is there a command to bring a window to the front?


Me.RegisterStartupScript("Key", _
            "<script language='javascript'>window.open('InApproval.aspx', 'RqStatus', 'width=450,height=220');</script>")
        End If
ASKER CERTIFIED SOLUTION
Avatar of David H.H.Lee
David H.H.Lee
Flag of Malaysia image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Fabulous!

That solved my problem, too!

SmartNavigation was too valuable to the parent page to disable it.

Thanks, guys!

John