Использование пользовательской модели представления в сочетании со скрытыми полями формы. Просто убедитесь, что все сделано по https.
ViewModel
public LoginForm
{
public string UserName { get; set; }
public string Password { get; set; }
public int SecretQuestionId { get; set; }
public string SecretQuestion { get; set; }
public string SecretQuestionAnswer { get; set; }
}
Методы действий
public ActionResult Login()
{
var form = new LoginForm();
return View(form);
}
[HttpPost]
public ActionResult Login(LoginForm form)
{
if (form.SecretQuestionId == 0)
{
//This means that they've posted the first half - Username and Password
var user = AccountRepository.GetUser(form.UserName, form.Password);
if (user != null)
{
//Get a new secret question
var secretQuestion = AccountRepository.GetRandomSecretQuestion(user.Id);
form.SecretQuestionId = secretQuestion.Id;
form.SecretQuestion = secretQuestion.QuestionText;
}
}
else
{
//This means that they've posted from the second half - Secret Question
//Re-authenticate with the hidden field values
var user = AccountRepository.GetUser(form.UserName, form.Password);
if (user != null)
{
if (AccountService.CheckSecretQuestion(form.SecretQuestionId, form.SecretQuestionAnswer))
{
//This means they should be authenticated and logged in
//Do a redirect here (after logging them in)
}
}
}
return View(form);
}
View
<form>
@if (Model.SecretQuestionId == 0) {
//Display input for @Model.UserName
//Display input for @Model.Password
}
else {
//Display hidden input for @Model.UserName
//Display hidden input for @Model.Password
//Display hidden input for @Model.SecretQuestionId
//Display @Model.SecretQuestion as text
//Display input for @Model.SecretQuestionAnswer
}
</form>
Если вы недовольны отправкой имени пользователя и пароля обратно в представление в скрытых полях для повторной аутентификации и убедитесь, что они не обманывают ... вы можете создать HMAC или что-то подобное для проверки. 1018 *
Кстати, этот вопрос выглядит как несколько вопросов, объединенных в один ... поэтому просто ответили, как выполнить двухэтапную аутентификацию с помощью одного метода представления / действия.