Link to home
Start Free TrialLog in
Avatar of rbend
rbendFlag for United States of America

asked on

What must I do to this to make the window open completely full-screen?

This is opening the window to "almost" full screen but just short of it.
If I click on the blue bar at the top, it snaps to full screen.

Page.RegisterClientScriptBlock("stringscript9", "<script language='JAVASCRIPT'> var w =window.open('AuthorizView.aspx','print', 'resizable=yes, scrollbars=yes, toolbar=no, location=no, directories=no, status=no, width=1024, height=768, menubar=yes, top=5, left=5');w.focus();</script>")
               

what must I change to make it go full screen automatically.

PS  Changing TOP and LEFT to 0 doesn't get me there either.


Avatar of TimYates
TimYates
Flag of United Kingdom of Great Britain and Northern Ireland image

This is the "Java" Topic Area.
The "Java Script" Topic Area would probably have been better...
Avatar of sudhakar_koundinya
sudhakar_koundinya

Instead of JavaScript what u have

try this

function fullScreen(theURL) {
window.open(theURL, '', 'fullscreen=yes, scrollbars=auto');
}
ASKER CERTIFIED SOLUTION
Avatar of sudhakar_koundinya
sudhakar_koundinya

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
Avatar of rbend

ASKER

sudhakar_koundinya
looks like the one.
thanks.