I know that you can make a redirection from an action to another like:
public ActionResult Index() {
return View();
}
public ActionResult OtherAction(){
return RedirectToAction("Index");
}
Good. I didn't found a solution to my question: How to redirect to an action which has parameters ? For example:
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);
}
Sorry for bad question but I didn't find any related questions here, maybe I don't know to use search :)