Results 1 to 4 of 4

Thread: Production Solution

  1. #1

    Thread Starter
    Hyperactive Member
    Join Date
    Jul 2000
    Location
    Europe, Lithuania
    Posts
    309

    Lightbulb 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?

  2. #2
    I'm about to be a PowerPoster! mendhak's Avatar
    Join Date
    Feb 2002
    Location
    Ulaan Baator GooGoo: Frog
    Posts
    38,170

    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.

  3. #3

    Thread Starter
    Hyperactive Member
    Join Date
    Jul 2000
    Location
    Europe, Lithuania
    Posts
    309

    Re: Production Solution

    Thanks. I think I got the idea.

    And what about trigers and stored procedures?

  4. #4
    I'm about to be a PowerPoster! mendhak's Avatar
    Join Date
    Feb 2002
    Location
    Ulaan Baator GooGoo: Frog
    Posts
    38,170

    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."

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width