tags:

views:

95

answers:

2

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?

+1  A: 

Yes. Or no (see comments).

Stephen
@Stephen what you think about Mr.controlfreak
saj
@Stephen i meant his comment
saj
Yes. The Answer is yes. In order to run a .net application one would need the .net framework.
Stephen
Hi Stephen don't get angry.. why i'm asking so many times.. i have to ask to my sys admin to install. so, my app is at my local pc and server is at another place.. now that server need framework to run app? which is at local or no need... at my local pc i have framework 2.0.. so is my server need or not?
saj
Okay, if the server is going to run the application from YOUR local machine, then no. The server does not need .Net (why would I get angry? :) )
Stephen
+1  A: 

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.

James Smith