Unable to find the requested .Net Framework Data Provider. It may not be installed. - when following mvc3 asp.net tutorial

前端 未结 8 2185
-上瘾入骨i
-上瘾入骨i 2020-12-01 20:42

I am following the ASP.NET MVC 3 Music store application tutorial but I keep getting stuck in part 4: http://www.asp.net/mvc/tutorials/mvc-music-store-part-4. It keeps telli

8条回答
  •  悲&欢浪女
    2020-12-01 21:15

    This happened to me because I created a new project which was trying to use System.Web.Providers DefaultMembershipProvider for membership. My DB and application was set up to use System.Web.Security.SqlMembershipProvider instead. I had to update the provider and connection string (since this provider seems to have some weird connection string requirements) to get it working.

提交回复
热议问题