I'm working on Mvc web app , I have deployed it on IIS 6 which is giving me an error
Cannot open database "aspnetdb.mdf" requested by the login. The login failed.
Login failed for user 'IIS APPPOOL\ASP.NET v4.0'.
I also enable authentication :
anonymous and also for ASP.NET Impersonate
My connection string is
<connectionStrings>
<add name="ApplicationServices"
connectionString="data source=.\SQLEXPRESS;Integrated Security=True;initial catalog=aspnetdb.mdf"
providerName="System.Data.SqlClient" />
</connectionStrings>
please help me
I need to upload this app on server.