A question about deployments....

  • Thread starter Thread starter Twitch
  • Start date Start date
T

Twitch

If I create an ASP.net application to sell to a client, is there something I
can do to the .aspx, .aspx.cs, etc. files to make them non-human readable /
editable?

Or is it presumed that if you are making this type of Dot Net app, you'ren
shipping source?

thx.
 
if you complile the app they only need the aspx and the DLL, not the .cs
files.
It will allow them to tweak the HTML of the aspx but not the code-behind
 
Twitch,

If you develop your ASP.NET application using code-behind, your source is
compiled into the primary assembly (.dll file) and you should not
distribute your source files.

Jim Cheshire, MCSE, MCSD [MSFT]
ASP.NET
Developer Support
(e-mail address removed)

This post is provided as-is with no warranties and confers no rights.

--------------------
 
Back
Top