Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

ASP forcing IE Full Screen MODE

Status
Not open for further replies.

bahakh

Programmer
Apr 15, 2003
17
DE
Hi All, I am trying to force IE to switch to full screen mode (the same as pressing F11). Is there anyway I can do that in ASP ?? Thanks
 
try this
its a javascript function:
<a href=&quot;javascript:FullWindow()&quot;>Full Window</script>


function FullWindow()
{
window.open('asd.html','asd','fullscreen')
}

this is the only one i tried. the javascript forum can get u better results...

Known is handfull, Unknown is worldfull
 
Thanks vbkris

I will try the code you sent...
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top