このコードをコンパイルすると、この種のエラー タイプまたは名前空間名 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;
}