我正在使用内部网并使用表单身份验证。
我刚刚添加了一项功能,可以在创建新员工时创建帐户(就像通过“员工”面板进行注册一样)。
if (_service.Create(objEmployee))
{
WebSecurity.CreateUserAndAccount(objEmployee.Login, objEmployee.Password); // Creates the account as we create the Employee
return new RedirectResult(Url.Action("Index"));
}
但我希望了解并改变以下内容:
每当我登录时,它似乎检查由表单身份验证创建的特定表,它是什么表以及如何更改它以便它检查我的Employee one(包含我的密码)?