Ask a Question related to ASP.NET General, Design and Development.
-
Kevin Spencer #1
Re: How to disable right click mouse??
Forget it. That doesn't stop anyone from anything, and it marks your site as
being designed by an amateur, as well as driving people away. A browser
downloads files. If you see the image in the page, it is already downloaded
to your machine. And there are about 10 different ways to get to it. The
best thing you can do is to use a digital watermark in your images, which
doesn't prevent them from being copied, but enables you to track them to a
certain extent. Check out the following web site:
[url]http://www.digimarc.com/[/url]
--
HTH,
Kevin Spencer
Microsoft MVP
..Net Developer
[url]http://www.takempis.com[/url]
Big things are made up of
lots of little things.
"Roberto López" <rlopez@eurosistemas.net> wrote in message
news:u%23h4DSgUDHA.736@TK2MSFTNGP09.phx.gbl...> Hi,
> I need to disable the contextual menu that appears when click the
> alternative button of the mouse. This is to avoid that users cannot save
> images without express permissions.
>
> Thanks and regards.
>
> --
> Roberto López
> Dpto. Soporte Software
> Eurosistemas Informáticos y Comunicaciones, S.L.
>
>
Kevin Spencer Guest
-
Mouse over vs On click
Hello, I hope someone can help me. I have successfully created a working 'image swap' on reaction of a 'mouse over'. But I want to use this... -
Capture mouse click
I would like to capture the text in a PDF under a mouse click in Acrobat Reader. Is this possible using Javascript, or will I need to write a plugin?... -
Disable "right mouse click"
Hi, quick question: when playing your movie, is there a way to disable the drop down menu from appearing when pressing your right mouse button? ... -
Move mouse cursor to X,Y location and simulate mouse click
Hi, Just something that slip my mind.. but how do you move the mouse cursor to a sprite member and simulate a mouse click? Any help is... -
Right Mouse Click
How can i let user to save any image on my director files,more to MIAW(still pictures though) using the right mouse button.can i do that?or can't... -
Vidar Petursson #2
Re: How to disable right click mouse??
Hi
Like Jens said this does not protect anything.....
<body oncontextmenu="return false">
Or per image
<img oncontextmenu="return false">
IE only
--
Best Regards
Vidar Petursson
==============================
Microsoft Internet Client & Controls MVP
==============================
"Roberto López" <rlopez@eurosistemas.net> wrote in message
news:u%23h4DSgUDHA.736@TK2MSFTNGP09.phx.gbl...> Hi,
> I need to disable the contextual menu that appears when click the
> alternative button of the mouse. This is to avoid that users cannot save
> images without express permissions.
>
> Thanks and regards.
>
> --
> Roberto López
> Dpto. Soporte Software
> Eurosistemas Informáticos y Comunicaciones, S.L.
>
>
Vidar Petursson Guest
-
Vidar Petursson #3
Re: How to disable right click mouse??
Hi
Ehhh Kevin... Dunno where this Jens came from :)
--
Best Regards
Vidar Petursson
==============================
Microsoft Internet Client & Controls MVP
==============================
"Vidar Petursson" <theking@icysoft.com> wrote in message
news:uA0wB1oUDHA.652@tk2msftngp13.phx.gbl...> Hi
>
> Like Jens said this does not protect anything.....
>
> <body oncontextmenu="return false">
> Or per image
> <img oncontextmenu="return false">
> IE only
>
> --
> Best Regards
> Vidar Petursson
> ==============================
> Microsoft Internet Client & Controls MVP
> ==============================
> "Roberto López" <rlopez@eurosistemas.net> wrote in message
> news:u%23h4DSgUDHA.736@TK2MSFTNGP09.phx.gbl...>> > Hi,
> > I need to disable the contextual menu that appears when click the
> > alternative button of the mouse. This is to avoid that users cannot save
> > images without express permissions.
> >
> > Thanks and regards.
> >
> > --
> > Roberto López
> > Dpto. Soporte Software
> > Eurosistemas Informáticos y Comunicaciones, S.L.
> >
> >
>
Vidar Petursson Guest
-
Roberto López #4
Re: How to disable right click mouse??
Thanks Vidar,
"Vidar Petursson" <theking@icysoft.com> escribió en el mensaje
news:uA0wB1oUDHA.652@tk2msftngp13.phx.gbl...> Hi
>
> Like Jens said this does not protect anything.....
>
> <body oncontextmenu="return false">
> Or per image
> <img oncontextmenu="return false">
> IE only
>
> --
> Best Regards
> Vidar Petursson
> ==============================
> Microsoft Internet Client & Controls MVP
> ==============================
> "Roberto López" <rlopez@eurosistemas.net> wrote in message
> news:u%23h4DSgUDHA.736@TK2MSFTNGP09.phx.gbl...>> > Hi,
> > I need to disable the contextual menu that appears when click the
> > alternative button of the mouse. This is to avoid that users cannot save
> > images without express permissions.
> >
> > Thanks and regards.
> >
> > --
> > Roberto López
> > Dpto. Soporte Software
> > Eurosistemas Informáticos y Comunicaciones, S.L.
> >
> >
>
Roberto López Guest
-
arif desai #5
Re: How to disable right click mouse??
<script language="javascript">
document.onmousedown=disableclick;
status="Right Click Disabled";
Function disableclick(e)
{
if(event.button==2)
{
alert(status);
return false;
}
}
</script>
<body oncontextmenu="return false">
...
</body>arif desai Guest



Reply With Quote

