当我编译这段代码时,它告诉我这种错误类型或命名空间名称 profilecommon 找不到。有人可以帮我解决这个问题吗?
case "Profile":
ProfileCommon pc = Profile.GetProfile(user.UserName);
DropDownList3.Items.Clear();
foreach (SettingsProperty p in
ProfileCommon.Properties)
{
DropDownList3.Items.Add(p.Name);
}
MultiView1.ActiveViewIndex = 4;
break;
}