views:

14

answers:

2

My web server does not have the framework installed and they are telling me to use the DLLs in bin folder.. is there any difference (performance, security etc) between deploying it by server installation and through bin..

+2  A: 

No, there isn't any difference.

Darin Dimitrov
+1  A: 

There is no difference in output.

If you are installing the AJAX extensions in the server dlls will go and sit in GAC.

If dll is in application's bin folder then is called local assemblies If dll is in GAC then is called local assemblies:global assemblies.

anishmarokey