Deplyement Help Please

  • Thread starter Thread starter NW Technicals
  • Start date Start date
N

NW Technicals

Hello Folks,
Sorry for a begineer question
I have developed a ASP.NET 2.0 applicaiton. Now I need to deploy this.
But I would like to compile and give rather than giving ASP pages so that my
code is for one not tampered with and secondly protects my rights of
ownership

I am using VS 2005, How do I build a DLL or exe for this webapp

How to find where compilition is going and understand this process

Regards,
Sridhar
 
ASP.NET doesn't precompile, but you can create a dll that has classes
that inherit from the Page class and create your page in them.
Afterwards your pages can just inherit these classes. It's the same
system as for ASP.NET 1.1 but is not extremely practical. The resulting
page will always be accessible, and the source pages will only be
available to your clients, with whom I guess you have an IP protection
clause in your contract - if not charge more money.
 
Back
Top