我有一个应用程序。
我被困在我想将模型从 Post 方法传递到 Get 方法的地方。
// Code in get method
FoundAccounts fa=new FoundAccounts();
fa.register = model;
return RedirectToAction("FoundAccounts", fa);
//Post Method
public ActionResult FoundAccounts(FoundAccounts fa)
{
//Use that values here
}
我可以这样做吗?我找不到办法。
请帮助我。
谢谢