Asp.net configuration management tool cannot connect to SQL Server database solution

Source: Internet
Author: User
Tags connectionstrings

In Visual Studio 2005, the following error occurs in website> Asp.net configuration> Security: "unable to connect to SQL Server database"

Solution:

Modify the machine. config file in C:/Windows/Microsoft. NET/framework/v2.0.50727/config, and modify the following lines in the file.

<Add name = "localsqlserver" connectionstring = "Data Source =. /sqlexpress; Integrated Security = sspi; attachdbfilename = | datadirectory | aspnetdb. MDF; user instance = true "providername =" system. data. sqlclient "/>

</Connectionstrings>

To:

<Add name = "localsqlserver" connectionstring = "Server = yourservername; database = aspnetdb; user id = sa; Password = your password; trusted_connection = false"/>

</Connectionstrings>

Here, the aspnetdb database comes with the system and can be changed to its own database name.

Some websites are described as follows and are not verified:

First, vs2005 saves the site information to the aspnetdb database of SQL express by default. If you use SQL Server official edition for storage, You need to configure it yourself. If the database has not been generated, use the command line tool aspnet_regsql.exe provided by Microsoft to generate the required database. The tool is located in the following path: C:/Windows/microsoft.net/framework/v/

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.