-
Production Solution
Hello,
I have created project, which is used be me.
Is consists Web Users Controls, Classes with procedures for interaction with SQL Stored procedures, MS SQL database, with Tables, Relationships, trigers and stored procedures.
Couse of money lack I strated thinking of transforming this project to production version.
Problem is, that I do not want to sell entire source code. I need somehow transform this project to be like product, which consist some dll, which could be used as web user controls in ASP .NET, SQL syntax for creating DB and tables, also stored procedures (even triggers) must be encrypted or used in other way.
Any ideas?
-
Re: Production Solution
Move your controls and classes to DLLs. You should know how to create class library projects. You do, don't you?
You can then reference those DLLs from your web project. This way the basic code in the ASPX is visible to all, but the code in the DLL is... well, just code in a DLL. :)
-
Re: Production Solution
Thanks. I think I got the idea.
And what about trigers and stored procedures?
-
Re: Production Solution
It's possible to use encryption in SQL Server to prevent others from seeing your SPs. According to MSDN, "Using ENCRYPTION prevents the procedure from being published as part of SQL Server replication."