P
Paul
I have a file called clBasePage.cs in the appCode directory (using vs 2005)
and I have a master page in the root website directory called
Masterpage.master.cs.
In the masterpage file I have
public partial class QSISMasterPage : System.Web.UI.MasterPage
{
}
so it inherits System.Web.UI.MasterPage.
The problem is that in the file clBasePage.cs I can not access the
QSISMasterPage class as I tried
public class clsBasePage : System.Web.UI.Page
{
private QSISMasterPage master; // trying to declare a private variable of
type
}
QSISMasterPage but I get the error
type or namespace QSISMasterPage could not be found.
Any Suggestions? thanks.
and I have a master page in the root website directory called
Masterpage.master.cs.
In the masterpage file I have
public partial class QSISMasterPage : System.Web.UI.MasterPage
{
}
so it inherits System.Web.UI.MasterPage.
The problem is that in the file clBasePage.cs I can not access the
QSISMasterPage class as I tried
public class clsBasePage : System.Web.UI.Page
{
private QSISMasterPage master; // trying to declare a private variable of
type
}
QSISMasterPage but I get the error
type or namespace QSISMasterPage could not be found.
Any Suggestions? thanks.