Tôi muốn chuyển nhiều hơn thì một tham số từ phương thức RedirectToActionCách chuyển Danh sách trong Redirecttoaction
làm cách nào tôi có thể vượt qua?
My One Action Method
[HttpPost, ActionName("SelectQuestion")]
public ActionResult SelectQuestion(string email,List<QuestionClass.Tabelfields> model)
{
List<QuestionClass.Tabelfields> fadd = new List<QuestionClass.Tabelfields>();
for (int i = 0; i < model.Count; i++)
{
if (model[i].SelectedCheckbox == true)
{
List<QuestionClass.Tabelfields> f = new List<QuestionClass.Tabelfields>();
fadd.Add(model[i]);
}
}
return RedirectToAction("Question", new { email = email, model = fadd.ToList() });
}
khác Action Method My
[HttpGet]
public ActionResult Question(string email,List<QuestionClass.Tabelfields> model)
{
}
tôi không nhận được giá trị trong mô hình.
Thực ra tôi cần id email và mô hình trong Url. làm cách nào tôi có thể nhận được? –