标签: c# asp.net asp.net-mvc asp.net-mvc-4
当我尝试传递要在文本框中添加的roleName时,VS会抛出错误
“无法连接到sql server”
[HttpPost] public ActionResult About(string roleName) { System.Web.Security.Roles.CreateRole(roleName); return View(); }
请告诉我如何更正此错误。