-1

I want to deploy a test application on client machine but this machine do not have IIS installed. Is there a way we can deploy an ASP.NET application on client machine without IIS?

1 Answers1

1

You need a web server in order to host an ASP.NET application. You could install the lightweight IIS Express if you don't want to install the fullblown IIS webserver. Note that out of the box IIS Express will accept only connections from localhost (as it is meant as a development web server) but this can be workarounded if you need it.

Community
  • 1
  • 1
Darin Dimitrov
  • 1,023,142
  • 271
  • 3,287
  • 2,928