本文介绍了在asp.net 5中重定向的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我仍在学习与asp.net一起使用的方法,并且尝试从另一个控制器重定向到某个控制器中的编辑"操作,但是我无法找到如何使其工作的方法.这就是我所拥有的
I am still learning to work with asp.net and I am trying to redirect to an Edit action in a controller from another controller, but I can’t find out how to make it work.this is what I have
return RedirectToAction("Edit", "Worker");
或
return RedirectToAction("Edit", "Worker", 25);
我需要这样的东西: http://localhost:xxxxx/Worker/Edit/25
推荐答案
您可以执行以下操作
return RedirectToAction("Edit", "Worker", new { id = 25});
这篇关于在asp.net 5中重定向的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!