1

我创建了一个名为 TestWeb 的新 Asp Web 应用程序项目。我还创建了另一个类库应用程序来包含模型类并调用这个模型。在 TestWeb 中,我添加了对 Model 的引用,并且可以在该项目的 bin 文件夹中看到 .dll 文件。但是,当在 TestWeb 的 default.aspx 文件夹中时,我无法访问模型命名空间。这让我发疯了。我做错了什么。

我注意到的一件事是我的关于页面可以访问命名空间但 default.aspx 不能

谢谢

4

1 回答 1

1

我能够在这些步骤中获得类似的功能:

1. Create Solution "MySolution"
2. Add a WebSite or Web Application project to "MySolution" named "MyWeb"
3. Add a Class Library Project To "MySolution" named "MyLibrary"
4. Select "MyWeb" project in the Solution Explorer and select the references node
5. Click Add Reference
6. Select the Solution List View Item on the right hand side
    NOTE : You should see "MyLibrary" as a selection
7. Select "MyLibrary"
8. Open "MyWeb" Default.aspx -> cs or vb file.
9. Add using MyLibrary.ClassName

我能够引用和实例化“MyLibrary”类就好了。如果您将代码添加到“MyLibrary”,您有时可能必须重新构建它,以便智能感知立即获取更改。

于 2013-11-02T22:03:32.120 回答