ASP.NET error
-
Hi, (I am a newbie to ASP.NET)... I create an ASP.NET project in VS2005 and it gives an "object not found" or "cannot create object" error in the first line (no matter what the first line is!!) I just create the webproject from its template and it gives this error! Hint: I am using Windows XP SP2 Home Edition (but I have installed IIS on it anyway), does this have anything related to my problem?
-
Hi, (I am a newbie to ASP.NET)... I create an ASP.NET project in VS2005 and it gives an "object not found" or "cannot create object" error in the first line (no matter what the first line is!!) I just create the webproject from its template and it gives this error! Hint: I am using Windows XP SP2 Home Edition (but I have installed IIS on it anyway), does this have anything related to my problem?
You usually get that error when you have an object that is null and you are treating it like it is not null. I would suggest pressing F10 to step into your app. This should take you to the first line of the code. Keep pressing F10 until you find the object that is not set. Once you have found the object hopefully you will know what to do. If not respond back with what you find. Hope that helps. Ben