我目前正在Visual Studio 2010中构建Web应用程序项目,直到最近,还不需要使用存储在ASPNETDB.mdf数据库文件中的成员资格,用户和角色等的脚手架代码.我一直在Visual Studio Web服务器,IIS Express(来自Visual Studio)和IIS7.5上运行该项目没有问题.
但是,我现在需要合并用户帐户,当我使用脚手架代码登录时,我收到服务器错误说明:
An attempt to attach an auto-named database for file C:\Users\User\Documents\COMP6059\PomumV2\PomumV2\App_Data\aspnetdb.mdf
Failed. A database with the same name exists,or
specified file cannot be opened,or it is located on UNC share.
仅当我使用IIS Express或IIS7.5 Web服务器时才会出现此错误. Visual Studio Web服务器工作正常.
我已按照http://support.microsoft.com/?kbid=2002980的指示无效.
下面是我的数据库连接字符串:
<add name="ApplicationServices" connectionString="data source=.\sqlEXPRESS;Integrated Security=SSPI;AttachDBFilename=|DataDirectory|aspnetdb.mdf;User Instance=true" providerName="System.Data.sqlClient" />
该错误发生在AccountController.cs文件的以下行(自动生成)
... if (Membership.ValidateUser(model.UserName,model.Password)) { ...
我确实读过某些地方,我可能需要将数据库移动到sql Server Management Studio,然后通过它连接visual studio,但我无法登录数据库.
我希望这能够在IIS7.5上运行.有没有人对如何解决这个问题有任何想法?