Results 1 to 4 of 4

Thread: How to make a website copy protected ?

  1. #1
    Join Date
    Aug 2010
    Posts
    46

    How to make a website copy protected ?

    Hey, guys today when I was searching for some content on website, i came through a website that was copy protected. By term 'Copy Protected' i mean that i was unable to copy anything from there. I was also not able to right click anywhere on the site. Only I can read that content.

    How people make such copy protected websites? Even i have a website and i would like to protect my official contents . Is there any software, any method or any code to do this copy protection?

  2. #2
    Join Date
    Aug 2010
    Posts
    23

    Re: How to make a website copy protected ?

    There is one software name like “Page Lock Website Copy Protection”. It Protect your HTML website's code and design from unauthorized copying using Page Lock Website Copy Protection. This award-winning software helps block website copying by stopping text from being selected and preventing the web page's source code from being read. It’s features are as follows:

    • HTML code will be encode and protect your website.
    • Block right mouse clicks from displaying menus on your website.
    • Disable drag and drop facility.


    You can easily download this software by searching on Google “Page Lock Website Copy Protection”. Hope this will be helpful to you.

  3. #3
    Join Date
    Jul 2010
    Posts
    57

    Re: How to make a website copy protected ?

    Hey, I have code for that copy protection. This is developed in java language. Below given code you can copy paste into your HTML coding part and you can disable copy from your web pages:

    document.oncontextmenu = function(){return false;};
    document.onselectstart=function(){
    if (event.srcElement.type != "text" && event.srcElement.type != "textarea" && event.srcElement.type != "password") {
    return false;
    }
    else {
    return true;
    }
    };
    if (window.sidebar) {
    document.onmousedown=function(e){
    var obj=e.target;
    if (obj.tagName.toUpperCase() == "INPUT" || obj.tagName.toUpperCase() == "TEXTAREA" || obj.tagName.toUpperCase() == "PASSWORD") {
    return true;
    }
    else {
    return false;
    }
    };
    }

    document.ondragstart = function(){return false;};

  4. #4
    Join Date
    Jul 2010
    Posts
    38

    Re: How to make a website copy protected ?

    Hey, there are some online services as well that helps you to protect your website. One of them is “C-site copyright services”. It protects your online writing, artwork, music and more from people that may try to pirate your work. It literary works on following:
    1. Website HTML code
    2. Website screen displays
    3. Computer programs (other than HTML-based web sites)
    4. Automated databases

Similar Threads

  1. Copy protected VHS to DVD and VHS
    By Nataliye in forum Windows Software
    Replies: 1
    Last Post: 24-03-2011, 04:39 PM
  2. How to copy Protected DVD's
    By Brendan18 in forum Windows Software
    Replies: 3
    Last Post: 28-07-2009, 05:09 PM
  3. How to burn copy protected DVD
    By Antrix in forum Windows Software
    Replies: 3
    Last Post: 21-05-2009, 11:08 AM
  4. Copy protected CD need to copy some songs
    By SagarP in forum Windows Software
    Replies: 6
    Last Post: 11-09-2008, 01:56 PM
  5. Burning Copy Protected Cd's
    By C4u in forum Guides & Tutorials
    Replies: 5
    Last Post: 03-09-2004, 12:47 AM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Page generated in 1,711,658,556.11438 seconds with 17 queries