I have develop MVC Web Application I use ASP.Net authenticate to implement my login form The problem is that i cannot deploy it to server. In the first i use ASPNetDB.mdf which is a file store in AppData forlder After that I change to store ASPNETDB as a database in SQlServer and also update the connectionstring to new database In the development environment both of them work well But when I deploy to IIS, I cannot login, it show me following error : "Failed to generate a user instance of SQL Server due to failure in retrieving the user's local application data path. Please make sure the user has a local user profile on the computer. The connection will be closed." Here is my connection string:
<connectionStrings>
<add name="ApplicationServices"
connectionString="Data Source=.\PHDatabase; Initial Catalog=aspnetdb;User ID=sa;Password=****" />
</connectionStrings>
I try to google a lot but until now, there is no result Please help me to solve the problem Regard