如何运行asp.net dll?
我有 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这些需要运行的 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.
您不像运行普通程序那样运行 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.