アクションから別のアクションへのリダイレクトを行うことができることを私は知っています:
public ActionResult Index() {
return View();
}
public ActionResult OtherAction(){
return RedirectToAction("Index");
}
良い。私の質問に対する解決策が見つかりませんでした:パラメータを持つアクションにリダイレクトする方法は?例えば:
public ActionResult Index(string v1, int i1) {
return View();
}
public ActionResult OtherAction(string value, int size){
return RedirectToAction("Index", // here need some adjustements or another trick);
}
悪い質問で申し訳ありませんが、ここで関連する質問は見つかりませんでした。検索を使用するかどうかわからない可能性があります:)