Cannot open database "" requested by the login. The login failed. Login failed for user 'IIS APPPOOL\'. after hosting on IIS
Looks like it's failing trying to open a connection to SQL Server.
You need to add a login to SQL Server for
IIS APPPOOL\ASP.NET v4.0
and grant permissions to the database.
In SSMS, under the server, expand Security, then right click Logins and select "New Login...".
In the New Login dialog, enter the app pool as the login name and click "OK".
If you are using some custom app pool then give your app pool name.
Comments
Post a Comment