ASP.NET 2.0 编译错误 BC30002:类型未定义
首先,让我解释一下情况,我知道这有点复杂。 我为我糟糕的英语道歉。
我创建了一个 dll 库,其中包含我创建的类。 我使用控制台应用程序和使用 Visual Studio 2005 创建的网站测试了该库, 一切正常。
因此,我将 dll 复制到正在运行的 ASP.NET 2.0 网站的“Bin”文件夹中,添加对 dll 文件的引用,导入命名空间,然后尝试启动 dll 中的对象实例。
发生了以下情况, 编译错误 BC30002:类型未定义。
当我尝试创建新类的另一个对象的实例时,会出现相同的错误,该新类位于同一网站的“App_Code”文件夹中。
在同一个网站上,我有一个第三方 dll 库,我为该第三方库做了完全相同的事情,并且工作正常。
我不确定为什么我自己的 dll 库(在“Bin”文件夹中)和类(在“App_Code”文件夹中)不起作用。
请给我一些提示,我该如何解决这个问题。
First of all, let me explain the situation, I know this is a bit complicated.
And I apologize for my poor English.
I have created a dll library which contains the classes I created.
I tested the library with Console Application and web site created with Visual Studio 2005,
everything works fine.
So I copied the dll to the "Bin" folder of a running ASP.NET 2.0 web site, added reference to the dll file, imported the namespace, then trying to initiate instances of objects in the dll.
The following occurred,
Compilation Error BC30002: Type is not defined.
Same error shows up when I tried to create instances of another object of a new class, which is place in the "App_Code" folder of the same web site.
On the same web site, I have a third party dll library, I did exactly the same thing for that third party library and it works fine.
I am not sure why my own dll library (in the "Bin" folder) and classes (in the "App_Code" folder) do not work.
Please give me some hints how I can solve the problem.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只是一个大胆的猜测,但也许您的库中的类与 App_Code 中的类之间存在名称空间冲突?
Just a wild guess but maybe a name-space conflict between classes in your library and those in App_Code?