.net : service pack 1 DLL’s

Published by

Posted on July 05, 2009

If you encounter a error stating the server could not load System.Web.Extensions or another dll on the server. it normally means the server does not have the dll installed. They can be copied from your local pc to the server and placed into the bin folder for your application.

The dos command to perform this copy is
copy “C:\WINDOWS\assembly\GAC_MSIL\System.Web.Extensions\1.0.61025.0__31bf3856ad364e35” C:\project\bin

*replacing C:\project\bin with your actual project location.