First Web App

Discussion in 'ASP.NET 2.0' started by imccoy, Dec 17, 2006.

  1. I'm trying to publish my first web app and I'm having a problem. I'm using Visual Studio 2005, .NET 2.0, SQL 2005. When I click Build-Publish Website, everything seems to upload fine. But when I go to my site I get the following error:


    Server Error in '/' Application.


    Configuration Error
    Description: An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your configuration file appropriately.

    Parser Error Message: Could not load file or assembly 'Microsoft.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies. The system cannot find the file specified. (E:\web\myteamstock\htdocs\web.config line 55)

    Source Error:






    Code:
    Line 53: 		</httpHandlers>
    Line 54: 		<httpModules>
    Line 55: 			<add name="WebResourceCompression" type="Microsoft.Web.Handlers.WebResourceCompressionModule, Microsoft.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
    Line 56: 			<add name="ScriptModule" type="Microsoft.Web.UI.ScriptModule, Microsoft.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
    Line 57: 		</httpModules>
    Source File: E:\web\myteamstock\htdocs\web.config Line: 55





    Version Information:Microsoft .NET Framework Version:2.0.50727.42; ASP.NET Version:2.0.50727.42


    Any help is greatly appreciated.<!--
    [ConfigurationErrorsException]: Could not load file or assembly 'Microsoft.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies. The system cannot find the file specified. (E:\web\myteamstock\htdocs\web.config line 55) (E:\web\myteamstock\htdocs\web.config line 55)
    at System.Web.Configuration.HttpModuleAction.get_Entry()
    at System.Web.Configuration.HttpModulesSection.CreateModules()
    at System.Web.HttpApplication.InitModules()
    at System.Web.HttpApplication.InitInternal(HttpContext context, HttpApplicationState state, MethodInfo[] handlers)
    at System.Web.HttpApplicationFactory.GetNormalApplicationInstance(HttpContext context)
    at System.Web.HttpApplicationFactory.GetApplicationInstance(HttpContext context)
    at System.Web.HttpRuntime.ProcessRequestInternal(HttpWorkerRequest wr)
    --><!--
    This error page might contain sensitive information because ASP.NET is configured to show verbose error messages using <customErrors mode="Off"/>. Consider using <customErrors mode="On"/> or <customErrors mode="RemoteOnly"/> in production environments.-->
     
  2. Do you have the necessary DLL's in your application bin?




    Vikram

    DiscountASP.NET
    www.DiscountASP.NET
     
  3. I'm not sure which DLL's are necessary. The DLL's in my BIN are:


    AjaxControlToolkit.dll
    App_Code.dll
    App_Licenses.dll
    App_Web_hlmjrxej.dll
    App_Web_rufched7.dll
    App_Web_udnaknym.dll
    C1.Web.Command.2.dll


    Thanks!
     

Share This Page