Search...

Thursday, February 16, 2012

How to dissable no right click on browser using jQuery


<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title>How to dissable no right click on browser Page</title>
    <script src="jquery-1.3.2.min.js" type="text/javascript"></script>
    <!--Free downloads on www.jquery.com-->
</head>
<body>
    <form id="form1" runat="server">
    <div>
    <h1>Right click is dissable in your browser</h1>
    </div>
    </form>
</body>
</html>

<script type="text/javascript" language="javascript">
$(document).ready(function() {
    $(document)[0].oncontextmenu = function() {
    alert("Action prohibited.");
    return false;
    }
});
</script>

*********************************************************************************


using System;

public partial class _Default : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {

    }
}

No comments: