selvaraj
selvaraj

Reputation: 899

Do I need a server to run a .net framework web application?

Is a server needed for the .net framework to run a .net web application on my local machine?

The application is on my local machine and I have configured it in IIS. I am connecting a server(xxx). Does xxx need the .net framework to run a .net web application at my local machine?

Upvotes: 1

Views: 863

Answers (2)

Stephen
Stephen

Reputation: 18964

Yes. Or no (see comments).

Upvotes: 1

James Smith
James Smith

Reputation: 69

The server does not need the .NET Framework to access your local application if it is an ASP.NET web application/web site. If you want to move the application from your local box to the server machine so the server hosts the application, the server will need the .NET Framework and IIS.

Upvotes: 1

Related Questions