如何运行asp.net dll?

发布于 2024-10-04 10:37:10 字数 113 浏览 2 评论 0原文

我有 4 个 ASP.NET DLL 和源代码。

当我编译它时,它说它无法运行它,因为它是一个类库。我知道,但是我应该如何运行这些文件。我没有任何 aspx 文件或任何东西,只有 4 个 DLL。

I've got 4 ASP.NET DLLs and the source.

When i compile it it says its not able to run it because it's a class library. I know, but how should I run those files. I haven't got any aspx files or anything, just the 4 DLL's.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

九命猫 2024-10-11 10:37:10

这些需要运行的 DLL做什么?您是否只需要快速调试/测试其中的某些功能或其他内容?一种快速的方法是编写一个简单的小控制台应用程序并引用其中的 DLL。

What do these DLLs do that needs to be run? Do you just need to quickly debug/test some functionality in them or something? A quick way to do that would be to just write a simple little console app and reference the DLLs in it.

温柔女人霸气范 2024-10-11 10:37:10

您不像运行普通程序那样运行 ASP.NET 应用程序。它必须托管在 Web 服务器(IIS 或 Visual Studio 中的内置服务器)上,然后由浏览器通过 URL 进行访问。

You don't run an ASP.NET application like you do a normal program. It has to be hosted on a web server (either IIS, or the built-in server in Visual Studio), and then accessed by a browser, through a URL.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文