Click here to Skip to main content
16,018,496 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hello Everyone,

I looking for help regarding Full Screen mode on a window pop up. I have used window.open function and specified full screen property "on". This thing works perfectly when I run the project in my system. But When I put it on IIS and If I try to access the same thing from the other system which is connected through network it doesn't open in full screen. I need some suggestion on this. Below is the code which I have used.

C#
var closeurl = "Login.aspx";
var popurl = "welcome.aspx";
            winpops=window.open(popurl,"HMSAJAX","toolbar=no,menubar=no,location=no,resizable=no,status=yes,scrollbars=yes,fullscreen=yes");

window.open('', '_self', '');
window.close();




Regards,
Nuthan Gowda
Posted

1 solution

http://www.w3schools.com/jsref/met_win_open.asp

http://www.htmlcodetutorial.com/linking/linking_famsupp_87.html
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900