Hey gang, I need to know if i need to restart my computer to get .net 3.5 to work with my web applications after i install it. My server machine is using IIS. On my local machine the web app works fine. When i browse to it on the server, i’m seeing errors like the Linq assemblies can’t be found … even though the references are in the web.config file and that for classes where i define properties using the snazzy no field generation way, the compiler complains saying i need to specify those very fields (again, this doesnt happen on the local machine when i build the web app). Advice on this would be appreciated.
Share
This may help (loading the latest version into IIS):
With a command window, get to the latest version of .net under C:\Windows\Microsoft.Net\Framework\ Now run the following command: ‘net stop w3svc’ to stop web services. Then use ‘aspnet_regiis.exe -ua’ to uninstall all instances of ASP.NET from IIS. Follow with ‘aspnet_regiis.exe -i’ to install ASP.NET into IIS. Now restart web services with ‘net start w3svc’.