我正在从asp.net网站学习MVC 3。
我的MVC 3应用程序已经在IIS AppPool\MySiteName
下进行了测试,效果很好。
使用Sql Server Management Studio,我为IIS AppPool\MySiteName
创建了一个新帐户。
我遵循了本教程"creating db on the fly",我收到了如下错误:
Server Error in '/' Application.
--------------------------------------------------------------------------------
Cannot open database "Movies" requested by the login. The login failed.
Login failed for user 'IIS APPPOOL\Getting Started'.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
答案 0 :(得分:2)
该错误表明用户IIS APPPOOL \ Getting Started没有正确的登录凭据,您的用户名或密码不正确。为什么不向我们展示web.config文件中连接字符串的样子
答案 1 :(得分:1)
以下是你应该做的事情:
我不清楚您是否遵循了这些步骤,或者有不同的情况。
答案 2 :(得分:1)
在应用程序池Load User Profile
上将True
设置为GettingStarted
。