How to protect HtmlHelper code in MVC controls
- by Oats
I am writing a custom mvc control (commercial), and all of the control's code lives in the custom htmlhelper code that i will have to distribute to the user.
I am ok with this for my commercial license sale, but for evaluating the controls, if i give out the htmlhelper code locally for my potential customers to evaluate, the user can simply "get" all the code and hence he may never buy it since he's got teh control code.
How do i protect my htmlhelper code while somebody is evaluation my cusotm mvc controls?
Is this a general problem or (I wish) i am missing something here?
Thanks.