Maximising Windows

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Microsoft Newsserver

    Maximising Windows

    Hi,

    I know this is not an ASP.NET issue, but I thought I would ask the question
    of all you guys here.

    I know how to mazimize a window using the javascript resizeTo( h , w )
    method of the window object. However, it doesent actually maximise the
    window to fill the whole screen. it stops short of that.

    Does anyone know if there is a way to do this ?


    Cheers


  • Alexey Smirnov

    #2
    Re: Maximising Windows

    On Mar 26, 5:48 pm, "Microsoft Newsserver" <m...@nowhere.c omwrote:
    Hi,
    >
    I know this is not an ASP.NET issue, but I thought I would ask the question
    of all you guys here.
    >
    I know how to mazimize a window using the javascript resizeTo(  h , w )
    method of the window object. However, it doesent actually maximise the
    window to fill the whole screen. it stops short of that.
    >
    Does anyone know if there is a way to do this ?
    >
    Cheers
    For IE you can use window.open with the 'fullscreen' option

    var newwin = window.open('de fault.aspx','', 'fullscreen');

    Comment

    • Microsoft Newsserver

      #3
      Re: Maximising Windows

      Thanks.

      Although that does in fact work, it makes it's not quite what I wanted as it
      fills the screen rather than makes the window fit the screen. Thanks for the
      help tho.


      "Alexey Smirnov" <alexey.smirnov @gmail.comwrote in message
      news:74b18f44-39aa-4024-99c5-687cb3dd9a66@i7 g2000prf.google groups.com...
      On Mar 26, 5:48 pm, "Microsoft Newsserver" <m...@nowhere.c omwrote:
      Hi,
      >
      I know this is not an ASP.NET issue, but I thought I would ask the
      question
      of all you guys here.
      >
      I know how to mazimize a window using the javascript resizeTo( h , w )
      method of the window object. However, it doesent actually maximise the
      window to fill the whole screen. it stops short of that.
      >
      Does anyone know if there is a way to do this ?
      >
      Cheers
      For IE you can use window.open with the 'fullscreen' option

      var newwin = window.open('de fault.aspx','', 'fullscreen');


      Comment

      Working...