Hi everybody
does anyone know how I can display my ASP pages in full screen mode in Internet Explorer?
All help appreciated
Thanx.
Printable View
Hi everybody
does anyone know how I can display my ASP pages in full screen mode in Internet Explorer?
All help appreciated
Thanx.
what do you mean by "Full Screen Mode"???
I am assuming maximizing your browser isn't the answer you are looking for?
I have the code/html at home. If you haven't gotten your answer by the time I get there, then I will post it.
Use some javascript like this.. or a variation of it.
Code:var height = window.screen.height;
var width = window.screen.width;
var dimensions = "height = " + eval(height + 10) + ", width = " + eval(width + 30);
mwindow = window.open("blank.htm", "mwindow", dimensions);
mwindow.document.open("text/html", "replace");
var i;
var timer = 0;
if(mwindow.moveTo)
mwindow.moveTo(-10, -30);
if(mwindow.resizeBy)
mwindow.resizeBy(0, 50);