Code Behind page

  • Thread starter Thread starter IntraRELY
  • Start date Start date
I

IntraRELY

Hello,

I am developing an asp.net application and want to protect the source code
within. I am useing the code behind method in VS.NET 2003. What is the best
way to accomplish this?

TIA,

Steve
www.IntraRELY.com
 
When you compile your pages, the CodeBehind is compiled into a DLL.
Therefore, you don't need to have the CodeBehind files in the web, just the
..aspx files (.ascx, etc) and the DLL(s) in the /bin folder. I'm not sure how
you might think anyone could get to those DLLs, but you could use a Code
Obfuscator on them if you really wanted to.

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
http://www.takempis.com
Big things are made up of
lots of little things.
 
Back
Top