I'm also one of those who would like to use classes on several web pages.
There is the the convenient way to put those clases into the App_Code folder. Was fine at the beginning, but as my web site get larger and larger it is not nice any more as every little change in the class recompile the whole application.
So what possibilites do I have if I would like that when I change something to my class only the really depended files are recompiled?
Before posting I did my best to search here in the forums about what to do - and I found several hints which says that I could put my classes also in a seperate class librarie with their proper dll. The problem is only that I do not have the faintest idea how to do that :-(
Also - does that really solve my problem? How does my the compiler know which 2 files he has to recompile (The class which would like to share is used by two webpages) ?.
Isn't there an simple way a little bit like in c++ with the header files? I tried to use the #using directive to tell the compiler that he should look for my self made class - but I'm not able to make him find the file.
Any help would be fantastic.
Klaus