Application Running Setup
-
Hi Guys, I use Visual C#.NET 2003 to build a Web Application. Now a problem is: when we run the application, an internet window is opened at a standard size. I'd like to have it opened "maximized" (taking all the screen size). Does anybody know how to do this? Thanks, Oren. :-D
-
Hi Guys, I use Visual C#.NET 2003 to build a Web Application. Now a problem is: when we run the application, an internet window is opened at a standard size. I'd like to have it opened "maximized" (taking all the screen size). Does anybody know how to do this? Thanks, Oren. :-D
Hi! I think you'll have to execute some JavaScript code in the Load event of your web page, something like
window.moveTo(0,0); window.resizeTo(screen.width,screen.height);
Regards, mav -- Black holes are the places where god divided by 0...