Reflecting your assemblies in an ASP.Net web site
It never fails. You need to reflect through all of the assemblies in you web site and you find that the reflection is missing some of the classes. Asp.net is smart and it does not load a given assembly until it is needed. So how can you reflect through all of the assemblies in your web site? Well first, you don't. Odds are you do not need to reflect through the System and Microsoft assemblies. What you need is a list of the custom assemblies in your web site; Once you hav...
[More]