Click here to Skip to main content
15,909,242 members
Please Sign up or sign in to vote.
1.75/5 (3 votes)
See more:
i have make one software in Asp.net C#.
I want to put security so that no one can copy this sofware and use it. How i can avoid someone form copy this software.
What i have to do for this ?
Please Help me ...
Posted

Fundamentally, you can't. And form of security can be broken if enough effort is put into it: look at how quickly a new version of PhotoShop appears in "cracked" form on the pirate sites after it is released by Adobe - the same day in some cases. And you can bet it cost Adobe a lot more time and money than that to implement copy protection...

There are some things you can do, but you need first to decide what benefit / investment ration you want to support. If you are selling the application for a couple of dollars, and expect to sell a hundred copies with the same number pirated, then you can't put much into it before you have cost yourself more than you will save. And bear in mind that it's not the number of copied versions in use that matters, it's the number of copied versions that will be paid for instead: so if you prevent 100 copies, but only 10 of them are converted to sales, then only (10 - 1) times the profit should have been invested in the protection, or you have lost money getting those sales. And if your copy protection annoys one customer into demanding his money back - and it can, and does if you don't get it exactly right - then that counts against the number of converted copies as well. It doesn't take long before it costs you a lot more to implement copy protection than you get back from it...

Having said that, google can help you: Google "copy protect my application"[^] - I leave it to you to work out the best method for your particular circumstances.
 
Share this answer
 
For an ASP.NET application, the problem is in fact very simple:

Whatever you have on the server side, the user cannot see anyway. If the hosting itself is secure enough, this is not your concern at all. And whatever you do on the client side becomes fully accessible by the users as soon as content (with all your client-side scripts) is sent to the client side, so there cannot be a way to prevent copying it, no matter what you do.

So, in this sense, your problem simply does not exist. You can relax.

—SA
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900