Here is my master pages's code behind:
Partial Class MasterPages_Frontend
Inherits System.Web.UI.Page
It's markup:
<%@ Master Language="
VB" CodeFile="Frontend.master.
vb" Inherits="MasterPages_Frontend" %>
All I did was change -
Partial Class MasterPages_Frontend
Inherits System.Web.UI.Page
to
Partial Class MasterPages_Frontend
Inherits Basepage (makes no sense I know just playing around)
Then back to the orginal
Partial Class MasterPages_Frontend
Inherits System.Web.UI.Page
And now my default and login pages which inherits basepage(or any page that inherits basepage) get the above error.
Thanks