我的 .Net Web 应用程序中有一个基页(继承自 System.Web.UI.Page,我的所有页面都继承自此基页),目前如果我使用以下方法:
protected int GetProfileTenant()
{
try
{
ProfileCommon p = Profile.GetProfile(Profile.UserName);
return Convert.ToInt32(p.TenantID);
}
catch
{
return -1;
}
}
出现错误说“名称配置文件在当前上下文中不存在”。
如果我把它放到页面中(从基本页面类继承),这种方法效果很好(没问题)。
有任何想法吗?
谢谢
谢谢