Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Host MVC web app without IIS [closed]

I have a Asp.net MVC 3 application which I want to give to a user to use without them having to host it in IIS to run.

What I would like to have is some sort of executable that they click or a service which will host the application and then they can use it from any browser on the network.

What are my options?

like image 720
JD. Avatar asked Jul 15 '11 15:07

JD.


2 Answers

Have you looked into IIS Hostable Web Core?

This feature basically allows you to host the entire IIS functionality within your own process. This gives you the power to implement scenarios where you can customize entirely the functionality that you want "your Web Server" to expose, as well as control the lifetime of it without impacting any other application running on the site.

like image 90
Curt Nichols Avatar answered Sep 25 '22 02:09

Curt Nichols


You can look into IIS Express http://learn.iis.net/page.aspx/868/iis-express-overview/ Although it is still IIS it's much lighter weight and might be what you need:

  • It doesn't run as a service or require administrator user rights to perform most tasks
  • IIS Express works well with ASP.NET and PHP applications
  • Multiple users of IIS Express can work independently on the same computer.
like image 20
Hector Correa Avatar answered Sep 24 '22 02:09

Hector Correa