我知道MembershipProvider
位于System.Web.Security
名称空间中。我在项目中添加了引用System.Web
,我在.cs文件中添加了using System.Web.Security
指令 - 但正如您所看到的,VS2010不相信我:
无法找到类型或命名空间名称“MembershipProvider” (您是否缺少using指令或程序集引用?)
我在这里缺少什么?
答案 0 :(得分:6)
您需要添加对System.Web.ApplicationServices.dll
的引用。
Namespace: System.Web.Security
Assembly: System.Web.ApplicationServices (in System.Web.ApplicationServices.dll)
答案 1 :(得分:0)
当天的Google结果:
它位于程序集System.Web.ApplicationServices
中。