source control beyond VSS

Posts   
1  /  2
 
    
erichar11
User
Posts: 268
Joined: 08-Dec-2003
# Posted on: 15-Apr-2005 15:19:39   

A webapplication IS a library See it as this: - you have a compiled assembly with the code behind code. These are classes. - you have a set of .aspx and .ascx files. These have references to the parent classes they inherit from, these are located in the compiled assembly. - the asp.net worker process then fires up the C# compiler and generates stub code for every aspx and ascx file and in fact makes them inherit from the assembly you compiled. The stubs use the HTML in the aspx and ascx files to produce html, so if you overwrite these, they're used immediately.

Thanks Otis for the explanation. My confusion was around vs.net accessing IIS directly vs. the class library approach where the project is being loaded from disk.

Upgraded my current project and it works great. Thanks Cadmium, this is an awsome tip.

Lastly, since I use the _svn trick, I'm wondering if I should revert back to using "standard" svn? I think I will.

Otis avatar
Otis
LLBLGen Pro Team
Posts: 39625
Joined: 17-Aug-2003
# Posted on: 15-Apr-2005 16:14:31   

sure rename the _svn to .svn simple_smile

Frans Bouma | Lead developer LLBLGen Pro
Cadmium avatar
Cadmium
User
Posts: 153
Joined: 19-Sep-2003
# Posted on: 15-Apr-2005 18:00:26   

erichar11 wrote:

Thanks Cadmium, this is an awsome tip.

Glad I could help smile

1  /  2