Assembly.GetType() stopped working after installing VS2005
-
Hi, This might have something with the IIS/permissions to do - but I'm not sure. My web application worked just fine (developed with VS2003) but then I installed VS2005. I have this code that loads an assembly Assembly asm = Assembly.Load("CustomLibrary"); which succeeds. The assembly is loaded just fine. Then I try to retrieve a class from the assembly: Type customization = asm.GetType("CustomLibrary.Customization"); but this returns null. If I run the exact same code on my laptop (on which I haven't gotten around to install VS2005 yet - thank god...:) ) it still works. So all that has changed is that I've installed VS2005. I still open the project in VS2003, run it from VS2003 and the IIS is set to use framework 1.1. What can have happened ? Is it somehow being executed from the 2.0 framework ? Has the default security settings suddenly changed on my local IIS during the install ? Any help will be much appreciated. Thanks in advance ! :) /Jan Do you know why it's important to make fast decisions? Because you give yourself more time to correct your mistakes, when you find out that you made the wrong one. Chris Meech on deciding whether to go to his daughters graduation or a Neil Young concert