Jul 10, 2003 #1 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
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
Jul 10, 2003 #2 vbkris Programmer Jan 20, 2003 5,994 IN try this its a javascript function: <a href="javascript:FullWindow()">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 Upvote 0 Downvote
try this its a javascript function: <a href="javascript:FullWindow()">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
Jul 10, 2003 Thread starter #3 bahakh Programmer Apr 15, 2003 17 DE Thanks vbkris I will try the code you sent... Upvote 0 Downvote