Can I automate creating a .NET web application in IIS?

后端 未结 9 2223
無奈伤痛
無奈伤痛 2020-12-30 13:52

I need to deploy a web application on several laptops (although it is a web application, it is intended to run via localhost only - thus the need to deploy on s

9条回答
  •  温柔的废话
    2020-12-30 14:34

    To implement a minimal web server you can use HTTP.SYS (the core component of IIS deployed with Windows XP SP2 or higher). In .NET this can be done e.g. by using the HttpListener class in the System.Net namespace.

提交回复
热议问题