我刚刚下载了一个VS 2012以及ASP.NET 4.5和MVC 4.0,并使用示例应用程序踢轮胎,发现与ASP.NET 4.0 / MVC 3完美配合的表单验证不再适用于最新版本。
当我在动作控制器中调用Login函数时,WebSecurity.Login调用失败:
public ActionResult Login(LoginModel model,string returnUrl) { if (ModelState.IsValid && WebSecurity.Login(model.UserName,model.Password,persistCookie: model.RememberMe)) { return RedirectToLocal(returnUrl); } // If we got this far,something Failed,redisplay form ModelState.AddModelError("","The user name or password provided is incorrect."); return View(model); }
我已经在VS 2010源代码中替换了这个代码,而且这个代码也失败了(使用了现在已经弃用的FormsAuthentication.Authenticate函数)。
我的问题是:有没有人将MVC3移植到MVC4应用程序,并找到了解决这个问题的解决方法?我正在使用IIS Express,所以我猜这可能会导致一些问题,但如果你有任何想法,我会很感激。
我从我的工作asp.net 4 / MVC3应用程序复制了我的配置如下,但没有运气(这里是相关的部分):
<connectionStrings> <add name="DefaultConnection" connectionString="Data Source=tcp:sql2k1201.dbprovider.net;Initial Catalog=sql2012_db;User ID=sql2012_db_user;Password=dbpassword;" providerName="System.Data.sqlClient" /> </connectionStrings> <system.web> <compilation debug="true" targetFramework="4.5" /> <httpRuntime targetFramework="4.5" /> <authentication mode="Forms"> <forms loginUrl="~/Account/Login" timeout="2880"/> </authentication> <membership> <providers> <clear/> <add name="AspNetsqlMembershipProvider" type="System.Web.Security.sqlMembershipProvider" connectionStringName="DefaultConnection" enablePasswordRetrieval="false" enablePasswordReset="true" requiresQuestionAndAnswer="false" requiresUniqueEmail="false" maxInvalidPasswordAttempts="5" minrequiredPasswordLength="6" minrequiredNonalphanumericCharacters="0" passwordAttemptWindow="10" applicationName="/" /> </providers> </membership> <profile> <providers> <clear/> <add name="AspNetsqlProfileProvider" type="System.Web.Profile.sqlProfileProvider" connectionStringName="DefaultConnection" applicationName="/" /> </providers> </profile> <roleManager enabled="true"> <providers> <clear/> <add name="AspNetsqlRoleProvider" type="System.Web.Security.sqlRoleProvider" connectionStringName="DefaultConnection" applicationName="/" /> </providers> </roleManager>
解决方法
这里的问题是,默认的mvc4互联网模板正在使用SimpleMembership来管理成员/角色信息。模板中的代码假设了这一点,只能在简单的成员身上工作。当您安装通用提供程序时,帐户控制器代码无法理解通用提供程序。看这个帖子,进一步解释这个场景
http://weblogs.asp.net/jgalloway/archive/2012/08/29/simplemembership-membership-providers-universal-providers-and-the-new-asp-net-4-5-web-forms-and-asp-net-mvc-4-templates.aspx