В Register.cshtml.cs (класс RegisterModel) у меня есть:
Код: Выделить всё
public async Task OnGetAsync(string returnUrl = null, string following = null)
{
ReturnUrl = returnUrl;
Following = following;
ExternalLogins = (await _signInManager.GetExternalAuthenticationSchemesAsync()).ToList();
}
public async Task OnPostAsync(string returnUrl = null, string following = null)
{
// ...
}
Как мне это сделать? получить этот параметр в OnPostAsync()?
Подробнее здесь: https://stackoverflow.com/questions/784 ... o-the-post
Мобильная версия