AJAX in production

G

Guest

I've got my AJAX page working from the development server, but now I want to
publish the site to the real thing IIS 6 in Windows Server 2003

What should I tell the guys when they see this message:

Could not load file or assembly 'System.Web.Extensions,
Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'
or one of its dependencies. The system cannot find the file specified.
C:\Inetpub\wwwroot\LBM_CallRecordings2\web.config 31
 
C

Cowboy \(Gregory A. Beamer\)

I find it easier, on many occasions, to delete the little helps in the
web.config file. Open the web.config file and look at line 31. It is
probably a reference to a library that is not needed, esp. if you used
publish to prepare the site for production (you did, right?).

--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA
http://gregorybeamer.spaces.live.com
Co-author: Microsoft Expression Web Bible (upcoming)

************************************************
Think outside the box!
************************************************
 
N

Nathan Sokalski

I recieved that same error, and what I found you need to do to fix it is the
following:

Add C:\Program Files\Microsoft ASP.NET\ASP.NET 2.0 AJAX
Extensions\v1.0.61025\System.Web.Extensions.dll to your application's /bin/
directory. You may end up needing to do this with
System.Web.Extensions.Design.dll as well, which is located in the same
directory. Good Luck!
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top