0

谁能解释为什么这个代码行在另一个类的方法中工作得很好,但是在我正在处理的类中 VS 说它的引用丢失了?两者都有 System.Web.Security 的 Import 语句

 Dim newUser As MembershipUser = Membership.GetUser(username)

这是错误消息

错误 1 ​​程序集“System.Web,版本=4.0.0.0,文化=中性,PublicKeyToken=b03f5f7f11d50a3a”中的类型“System.Web.Security.MembershipUser”已转发到程序集“System.Web.ApplicationServices”。您的项目中缺少对“System.Web.ApplicationServices”的引用,或者程序集“System.Web.ApplicationServices”中缺少“System.Web.Security.MembershipUser”类型。

4

2 回答 2

3

参考不一样Import

根据文档Membership该类位于System.Web.dll. 因此,您需要添加System.Web.dll到您的项目引用。

于 2013-08-28T14:31:34.000 回答
0

Well like another prior question I had, I had to manually enter the add assembly line into the web.config file

 <add assembly="System.Web.ApplicationServices, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
于 2013-08-28T17:35:43.923 回答