Very good article on how to setup ASPNETDB on SQL 2000

Discussion in 'ASP.NET 2.0' started by Bruce, Dec 5, 2005.

  1. Bruce

    Bruce DiscountASP.NET Staff

  2. Thanks ! This information was extremely helpful.
     
  3. Bruce

    Bruce DiscountASP.NET Staff

  4. Good Article.
     
  5. The above article help me finally succeed with the following example. Notice the <clear/> which was not mentioned but needed before I could connect. Also for some reason the Data Source I first had was sql2k502.discountasp.net/SQL2005 and I had to get rid of the /SQL2005 part of the address.


    The following connectionString example worked for me, of course some of your server and database name information will be differerent.


    <connectionStrings>
    <remove name="LocalSqlServer"/>
    <clear/>
    <add name="LocalSqlServer" connectionString="Data Source=sql2k502.discountasp.net;Integrated Security=false;Initial Catalog=SQL2005_215582_members;User ID=SQL2005_215582_members_user;Password=*********" providerName="System.Data.SqlClient"/>
    </connectionStrings>
     

Share This Page