简体   繁体   中英

Need Javascript to open a web page in full screen after logging in

I have one login.aspx page one master page(Master.master). When I click on login button, my web page should view in full screen mode.This should happens automatically when user credentials are correct.Master page should open in full screen mode.

I don't want it in new window(pop up window). I don't want to ask user press F11.It should work

in all browsers.(mainly in firefox and Internet Explorer)

I tried with below codes. But it is not working fine. Please correct my code or suggest me new code.

<script language="javascript"> 
function fullscreen() 
{ 
window.open('page.php','kyscorp','width='+screen.width+',height='+screen.height+',top=0,left=0'); 
} 
</script>

I wrote in Master.master aspx page.

Regards,

nj

使用window.Location代替window.open

window.location="page.php";

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM