我有這種使用最簡單形式的表單身份驗證的舊MVC5應用程序。只有一個存儲在web.config中的帳戶,沒有角色等Asp.Net核心 - 最簡單的可能的表單身份驗證
<authentication mode="Forms">
<forms loginUrl="~/Login/Index" timeout="30">
<credentials passwordFormat="Clear">
<user name="some-user" password="some-password" />
</credentials>
</forms>
</authentication>
登錄程序只是調用
FormsAuthentication.Authenticate(name, password);
就是這樣。 在asp.net核心中是否有類似的東西(簡單來說)?
認證不能和asp.net核心兼容。而是使用標識 –