我在我的网站上使用asp.net用户管理。(ASP.NET 3.5)在Win7上通过VS2010开发和测试时,一切都运行良好。但是当我编译并发布网站时会抛出错误:
Compiler Error Message: BC30554: 'ProfileCommon' is ambiguous.
Line 55: End Sub
Line 56:
Line 57: Protected ReadOnly Property Profile() As ProfileCommon
Line 58: Get
Line 59: Return CType(Me.Context.Profile,ProfileCommon)
请帮帮我。感谢
答案 0 :(得分:2)
答案 1 :(得分:1)
尝试this文章中的解决方案。
基本上从配置文件中删除“属性”并构建应用程序。它会带来错误。之后,在config中添加“属性”部分,它必须开始工作。
答案 2 :(得分:1)
从IIS删除了所有已部署的文件(仅限必需的应用程序),并再次部署到IIS,为我工作。