Results 1 to 6 of 6

Thread: Log off a web application

  1. #1

    Thread Starter
    Hyperactive Member
    Join Date
    Sep 2002
    Location
    Hendersonville , NC
    Posts
    260

    Log off a web application

    This may sound dumb but is there any way for the user to shut down a web application OTHER than using Browser File/Close or using the X in the control box?
    Thanks
    gollnick
    William E Gollnick

  2. #2
    Frenzied Member MrGTI's Avatar
    Join Date
    Oct 2000
    Location
    Ontario, Canada
    Posts
    1,277

    Post

    There is a javascript that will close a browser window.
    .
    ~Peter


  3. #3
    Frenzied Member TomGibbons's Avatar
    Join Date
    Feb 2002
    Location
    San Diego, CA Previous Location: UK
    Posts
    1,345

    Re: Log off a web application

    Quote Originally Posted by MrGTI
    There is a javascript that will close a browser window.
    .
    But only if the browser window was opened by the javascript too.

  4. #4
    Frenzied Member MrGTI's Avatar
    Join Date
    Oct 2000
    Location
    Ontario, Canada
    Posts
    1,277

    Wink Re: Log off a web application

    Actually no. It can close a window that the user opened themselves. Try this code in a blank HTML page that you open by double clicking it.
    VB Code:
    1. <a href="javascript:window.close();">Close This Window</a>
    Of course, IE 6.x has a few security safeguards, so the user will need to answer Yes when asked if it's okay if the browser window is closed.

    It's probably best if you keep the use of this to a minimum gollnick. Let the user decide if they want to close the window themselves.
    ~Peter


  5. #5
    Frenzied Member TomGibbons's Avatar
    Join Date
    Feb 2002
    Location
    San Diego, CA Previous Location: UK
    Posts
    1,345

    Re: Log off a web application

    Yeah that's sort of what I meant. I wasn't really clear I guess

  6. #6
    Frenzied Member MrGTI's Avatar
    Join Date
    Oct 2000
    Location
    Ontario, Canada
    Posts
    1,277

    Cool


    .
    ~Peter


Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width