server error

Discussion in 'Databases' started by goliardsinf, Jan 17, 2008.

Thread Status:
Threads that have been inactive for 5 years or longer are closed to further replies. Please start a new thread.
  1. Hi,

    I'm pretty new to all this, but this is a problem I really don't understand.

    I created my website in MS Visual Web Develloper 2008 Express Edition. Everything works fine on my computer, so I decided to put it finally on the net.

    I opened my account here, added SQL 2005 addon and copied all my files to my ftp link.

    Now, my site doesn't work, I copied the error message here, I hope you can help me with this.



    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 'System.Data.DataSetExtensions, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' or one of its dependencies. The system cannot find the file specified.

    Source Error:





    Code:
    Line 43: 				<add assembly="System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
    Line 44: 				<add assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
    Line 45: 				<add assembly="System.Data.DataSetExtensions, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
    Line 46: 				<add assembly="System.Xml.Linq, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
    Line 47: 			</assemblies>
    Source File: E:\web\goliardsinf\htdocs\web.config Line: 45

    Assembly Load Trace: The following information can be helpful to determine why the assembly 'System.Data.DataSetExtensions, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' could not be loaded.
     
  2. Can you post the Connection Strings section of your Web.config?
    Comment out anything sensitive, i.e. passwords.
     
  3. Hi,

    No problem, here they are.




    <configSections>


    <sectionGroup name="system.web.extensions" type="System.Web.Configuration.SystemWebExtensionsSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35">


    <sectionGroup name="scripting" type="System.Web.Configuration.ScriptingSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35">


    <section name="scriptResourceHandler" type="System.Web.Configuration.ScriptingScriptResourceHandlerSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication"/>


    <sectionGroup name="webServices" type="System.Web.Configuration.ScriptingWebServicesSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35">


    <section name="jsonSerialization" type="System.Web.Configuration.ScriptingJsonSerializationSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="Everywhere"/>


    <section name="profileService" type="System.Web.Configuration.ScriptingProfileServiceSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication"/>


    <section name="authenticationService" type="System.Web.Configuration.ScriptingAuthenticationServiceSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication"/>


    <section name="roleService" type="System.Web.Configuration.ScriptingRoleServiceSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication"/>


    </sectionGroup>


    </sectionGroup>


    </sectionGroup>


    </configSections>


    <appSettings/>


    <connectionStrings>


    <add name="Verbinding" connectionString="Data Source=.\SQLEXPRESS;AttachDbFilename=|DataDirectory|\Gegevens.mdf;Integrated Security=True;User Instance=True"


    providerName="System.Data.SqlClient" />


    </connectionStrings>
     
  4. You posted enough info for the answer bro. [​IMG]
    DASP doesn't support SQL Server Express DBs.
    You need to get your local data into your DASP SQL Server DB.

    If you need help with that several of us are here for ya.
    Salute,
    Mark
     
  5. Hi,

    Thanks, I'm glad you found the solution...if I knew how to do it ;)

    Can you just explain me how I do that, so that i can go on..

    Thanks !
     
  6. Do you have a local copy of SQL Server?
    Also, your DASP SQL Server account, is it 2000 or 2005?
     
  7. mjp

    mjp

    Isn't there another problem in that error?

    System.Data.DataSetExtensions, Version=2.0.0.0

    Make sure that you are notusinga pre-release version of.net 3.5 (2.0.0.0 indicates the beta).

    mjp
    ---
    DiscountASP.NET
     
  8. Hi,

    It seems I was using the beta version indeed...downloading and installing the newest now...I'll see what outcome that'll give.
     
Thread Status:
Threads that have been inactive for 5 years or longer are closed to further replies. Please start a new thread.

Share This Page