Link to home
Start Free TrialLog in
Avatar of alak
alak

asked on

Open browser in fullscreen without interaction

I want to open a asp page in fullscreen view on execution
of the asp page. How can I do that?
ASKER CERTIFIED SOLUTION
Avatar of puranik_p
puranik_p
Flag of India 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
Avatar of alak
alak

ASKER

i don't want window.open() method. i want first time when my asp page will be execute it will be in fullscreen view.
i don't want window.open() because in my starting without any interaction how can i use it? i want to say as like vb
form_load()
form1.windowstate=vbmaximise
<script language=javascript>
   x = screen.width;
   y = screen.height;
   
   window.moveTo (0,0);
   window.resizeTo(x,y);
</script>
Avatar of alak

ASKER

I want to know how can it possible an asp page on execution of asp page (not window.open) it will be fullscreen mode means it has no menubar and toolbar.