Creating .MDF With SQL 2008 EXPRESS/ Visual Web Developer 2008

后端 未结 1 1650
谎友^
谎友^ 2021-01-21 20:46

I am trying to create a login function with SQL server 2008 express and Visual Web Developer 2008 Express.
I tried Using a Login status and Login controll / Running the page

1条回答
  •  有刺的猬
    2021-01-21 21:10

    ASPNETDB.MDF is the default database for using the ASP.NET Application Services, which includes profiles, roles, membership and more. You can use the supplied membership providers that are included with the .NET Framework, or you can implement your own providers.

    You do not have to downgrade SQL Server in order to get a functioning login on your site. To resolve the error message, verify that SQL Server express edition is properly installed and is currently running on the system. You can use SQL Server Configuration Manager to check and start the SQL instances that are installed on the system.

    If the SQL Server Express instance is running, check if Visual Studio is pointing to the correct SQL instance. You can do this by navigating to Data connections under Tools -> Options in Visual Studio IDE.

    Links:

    1. Microsoft Support Article
    2. Implementing a Membership Provider

    0 讨论(0)
提交回复
热议问题