0

当我编译这段代码时,它告诉我这种错误类型或命名空间名称 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;
}
4

1 回答 1

0

您可能缺少using对包含ProfileCommon. 检查您的参考资料!

编辑:

有关您的问题的可能解决方案,请参阅问题。

于 2012-05-07T15:37:51.110 回答