We have a vs2013-developed-MVC web app that stores validation messages (eg. InvalidUserNameOrPassword=Invalid ID or Password.) in its bin\Resources\Resources.txt file. For eg, when login failed, the view will display "Invalid ID or Password" using: @string.Format(appName.ResourceLibrary.ResourceLocalizer.Current.GetResource("InvalidUserNameOrPassword "), "attchments")
It works fine when deployed to svr1. However, when deployed to svr2, "Resources.txt" cannot be loaded, and the login view cannot obtain the value "Invalid ID or Password" for invalid login. Full controls are granted to "Everyone" at both "bin\Resources" folder and "Resources.txt" file. Does anyone has any idea on what additional setting is require?