Hi,
After I migrate from from ASP.NET 1.0 to 2.0, I get this error mesage in all the code behind file where inherit this file "InheritPage"
Code Behind:
Public MustInherit Class AssignUserGroup
Inherits InheritPage <--- Error Message : Type 'Inherit Page' is not defined.
In fact, it is all of the code-behind file is references to this file. So, with all the aspx file header contain the below code also get error
<%@ Reference Page="~/commonpage/inheritpage.aspx" %> <--- Error Message : 'Context' is not member of 'xxx'
I have refer to this website http://msdn2.microsoft.com/en-us/library/aa479312.aspx , known this should be the "Circular Reference Issue", but i cannot solve the problem. Anyone could give the solution will be very appreciate!!
Calvin