Click here to Skip to main content
15,887,946 members
Please Sign up or sign in to vote.
5.00/5 (1 vote)
See more:
I have just completed developing an application in ASP.NET. i want to release it for the public used.However i don't want the user to view my code and make changes to it. So What is the standard procedure that should be done to the application source code before i release it.
Posted

1 solution

As you are publishing this on ASP.NET I think that your application is an ASP.NET application, therefore I think you copy and paste your application on the IIS with the source code, also this works but it exposes the code to the server users, you should publish your application, right click on your web project and click publish, of which it will generate dlls instead of source code use.

Keep in mind that any .NET application (Web or non-Web) can be reverse engineered, but you can only make it harder to the cracker to reverse it, the process is called obfuscating, of which it encrypts the reverse engineered .NET dlls so the cracker won't understand pretty much of it.
 
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