CS0234:名称空间“MyWebsite.Commerce”中不存在类型或命名空间名称“ShoppingCart”(您是否缺少程序集引用?)
public class ProfileCommon : System.Web.Profile.ProfileBase {
public virtual MyWebsite.Commerce.ShoppingCart Cart {
get {
return ((MyWebsite.Commerce.ShoppingCart)(this.GetPropertyValue("Cart")));
}
set {
this.SetPropertyValue("Cart", value);
}
}
public virtual string Country {
get {
return ((string)(this.GetPropertyValue("Country")));
}
set {
this.SetPropertyValue("Country", value);
}
}
public virtual string Gender {
get {
return ((string)(this.GetPropertyValue("Gender")));
}
set {
this.SetPropertyValue("Gender", value);
}
}
public virtual int Age {
get {
return ((int)(this.GetPropertyValue("Age")));
}
set {
this.SetPropertyValue("Age", value);
}
}
public virtual ProfileCommon GetProfile(string username) {
return ((ProfileCommon)(ProfileBase.Create(username)));
}
}
当我运行此页面时发生错误,当我点击错误行时它会转到上面的代码,请有人帮我尽快.......
答案 0 :(得分:0)
检查项目引用 - 很可能缺少指向包含MyWebsite.Commerce.ShoppingCart
的程序集的项目引用。这是项目参考吗?也许你还没有构建解决方案。