我正在尝试在我的Startup.Auth中获取登录页面的URL。
app.UseCookieAuthentication(new CookieAuthenticationOptions
{
AuthenticationType = DefaultAuthenticationTypes.ApplicationCookie,
LoginPath = new PathString( ... )
});
如何检索登录页面的网址(controller =“Login”,action =“Index”)?
我没有使用UrlHelper
方法的Action
对象...