I am trying to move an asp.net 1.1 site that is currently hosted on a dying server with IIS 6 to a new server with IIS 7. I've setup everything with IIS to get the asp.net 1.1 app pool and classic mode and all that good stuff. When I access the site though, I keep getting

    Parser Error 

Could not load type 'XXX.Type

    <%@ Page Language="vb" AutoEventWireup="false" Codebehind="default.aspx.vb" Inherits="XXX.Type" EnableViewState="False" %>

I don't have access to the source code. What should I do to get this running?

I appreciate any help.

link|improve this question

Not 100% sure but i believe CodeBehind is replaced with CodeFile to specify the source file in ASP.NET 2.0 and up. – Sergey Akopov Sep 23 '11 at 5:08
The site is asp.net 1.1, the app pool is set to asp.net 1.1 – ILovePaperTowels Sep 23 '11 at 5:14
@Pranay You're thinking of IIS 6 – ILovePaperTowels Sep 23 '11 at 5:16
@ILovePaperTowels dude, migrate it to one of the later versions if you can. Seriously! – tugberk Sep 23 '11 at 8:20
@ILovePaperTowels also see this page : msdn.microsoft.com/en-us/library/cc531167.aspx It is highly possible it is gonna be dead soon. – tugberk Sep 23 '11 at 8:22
show 1 more comment
feedback

1 Answer

up vote 1 down vote accepted

Looks like you're missing dll in a bin folder for the XXX.Type class which default.aspx.vb inherits from

link|improve this answer
no dll's are missing. all dll's are in the bin folder – ILovePaperTowels Sep 23 '11 at 5:15
Are the COM DLL's registered on the new machine with Regsvr32.exe? – JohnFx Sep 23 '11 at 5:27
maybe the dll has a dependency on another dll which is not on the server. I would use process monitor tool technet.microsoft.com/en-us/sysinternals to see what w3wp.exe is trying to load. – Andrew Douglas Sep 23 '11 at 5:51
@Andrew I'm looking at the dll via ILSpy and i'm not seeing the XXX.Type so I have to investigate and see if I pulled the right files from the right server. I don't think there are any DLL's in the GAC but i'll have to look again. – ILovePaperTowels Sep 23 '11 at 13:49
I award you the answer because it's the closest. If you can have a look at my new question stackoverflow.com/questions/7557086/… i'd appreciate it. – ILovePaperTowels Sep 26 '11 at 15:00
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.