Reputation: 899
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
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