external cs files or assemblies

  • Thread starter Thread starter Karl Hungus
  • Start date Start date
K

Karl Hungus

If Im developing a asp.net application, and I want to use classes written in
c#, should I create an assembly out of the c# files (one class per file), or
is there another way to put the uncompiled files on the server?

Basically I want all my non-presentation code within standalone c# classes.

TIA
Karl
 
Code-behind part of an asp.net application is deployed as complied
assemblies. There is neither need nor benefit in storing source files on the
server.

Eliyahu
 
Back
Top