Should I use a Windows Service or an ASP.NET Background Thread?

后端 未结 4 1946
悲哀的现实
悲哀的现实 2021-01-19 02:59

I am writing a web application in ASP.NET 3.5 that takes care of some basic data entry scenarios. There is also a component to the application that needs to continuously po

4条回答
  •  温柔的废话
    2021-01-19 03:31

    Why not just use a console app that has no ui? Can do all that the windows service can and is much easier to debug and maintain. I would not do a windows service unless you absolutely have to.

提交回复
热议问题