How to Customize Internet Explorer Menus Using JS and Any other Scripting Language

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

    How to Customize Internet Explorer Menus Using JS and Any other Scripting Language

    hi,

    How to Customize Internet Explorer Menus Using JS and Any other Scripting Language?

    I am in need to protect my website from saving files from the file menu in IE
    and Printing too.Can anyone suggest me how to do this...?
  • Lasse Reichstein Nielsen

    #2
    Re: How to Customize Internet Explorer Menus Using JS and Any other Scripting Language

    rhrose2k2@yahoo .co.in (balachandar) writes:
    [color=blue]
    > How to Customize Internet Explorer Menus Using JS and Any other
    > Scripting Language?[/color]

    Why only IE?
    [color=blue]
    > I am in need to protect my website from saving files from the file menu in IE
    > and Printing too.Can anyone suggest me how to do this...?[/color]

    Can't be done. Just forget about it. Either accept that people can
    save the page, or don't publish it.

    Genarally, you can't control the client without the permission of the
    user. Anything you try to do, he can chose to turn off, since the code
    is running on his computer.

    /L
    --
    Lasse Reichstein Nielsen - lrn@hotpop.com
    Art D'HTML: <URL:http://www.infimum.dk/HTML/randomArtSplit. html>
    'Faith without judgement merely degrades the spirit divine.'

    Comment

    • Douglas Crockford

      #3
      Re: How to Customize Internet Explorer Menus Using JS and Any other Scripting Language

      > I am in need to protect my website from saving files from the file menu in IE[color=blue]
      > and Printing too.Can anyone suggest me how to do this...?[/color]

      It is possible to supress the menubar with window.open(). Be aware, however,
      that you cannot ultimately prevent saving and printing.

      Comment

      • chirs

        #4
        Re: How to Customize Internet Explorer Menus Using JS and Any other Scripting Language

        I saw some popup windows that do not have any menu. If you right
        click the mouse, the popup menu only show the restore, max,min and
        close. If you use this type of pages, the only way to save is to use
        copy and paste. But how to create this kind of pages?

        Comment

        • Lasse Reichstein Nielsen

          #5
          Re: How to Customize Internet Explorer Menus Using JS and Any other Scripting Language

          yma@kicon.com (chirs) writes:
          [color=blue]
          > I saw some popup windows that do not have any menu.[/color]

          Interesting. Where did you see it?
          [color=blue]
          > If you right click the mouse, the popup menu only show the restore,
          > max,min and close.[/color]

          Was this in a standard browser?
          If so, which one? (since you didn't say, I'll assume it is IE).
          [color=blue]
          > If you use this type of pages, the only way to save is to use copy
          > and paste.[/color]

          I bet I can be more ingenious than that. Never understimate a challenge-
          deprived nerd :)
          [color=blue]
          > But how to create this kind of pages?[/color]

          If you tell me where you saw it, I'll tell you how to do it (and I'd
          like to know too).

          Still, I'll bet it won't prevent a determined user from saving the
          page.

          /L
          --
          Lasse Reichstein Nielsen - lrn@hotpop.com
          Art D'HTML: <URL:http://www.infimum.dk/HTML/randomArtSplit. html>
          'Faith without judgement merely degrades the spirit divine.'

          Comment

          Working...