として、私は管理エリアの午前今私はこれはで私の他のアクションですリダイレクトアクションparmenter
ChangePasswordModel mode = new ChangePasswordModel();
mode.ConfirmPassword = password;
mode.NewPassword = password;
mode.OldPassword = user.Password;
return RedirectToAction("ChangePassword", "Account",new { area = '/' } , new {model = mode});
を送ることができますどのように既定の領域にあるコントローラーをアカウントに値を送信したいです私は私のコードをリダイレクトする場所アカウントコントローラが
[Authorize]
[HttpPost]
public ActionResult ChangePassword(ChangePasswordModel model)
{
if (ModelState.IsValid)
{
// ChangePassword will throw an exception rather
// than return false in certain failure scenarios.
bool changePasswordSucceeded;
try
{
MembershipUser currentUser = Membership.GetUser(User.Identity.Name, true /* userIsOnline */);
changePasswordSucceeded = currentUser.ChangePassword(model.OldPassword, model.NewPassword);
}
catch (Exception)
{
changePasswordSucceeded = false;
}
if (changePasswordSucceeded)
{
return RedirectToAction("ChangePasswordSuccess");
}
else
{
ModelState.AddModelError("", "The current password is incorrect or the new password is invalid.");
}
}
// If we got this far, something failed, redisplay form
return View(model);
}
+1になります。私は間違いを見ていない、あなたは正しい。 –
ITsは動作していますが、[HttpGet]アクションにリダイレクトしています。[Httppost]メソッドにリダイレクトします。 –
@MoeezAgha問題はありません。 'HttpPost'アクションにリダイレクトすることはできません。' HttpGet'でなければなりません。 – mattytommo