在查询字符串中从视图发送和接管字符串或int

时间:2016-03-14 15:14:46

标签: c# asp.net-mvc

是否可以发送和接管变量(int或string) 从(例如) / Home / Index / Home / Index / Site(这里将传输变量)并从那里到其他下一个以简单的方式查看同一个变量?

我需要发送(例如) OwnerID (从主页/索引到下一个操作),我必须只显示所有者的表格元素。我可以从这里转到类别(Home / CategoryOne),其中我只需要显示所有者的元素,并且只显示此类别。因此,我必须以某种方式从第一步采用 OwnerID ,从第二步采用 CategoryName 来反映所有者 CategoryOne 元素。在下一步中,我需要添加编辑这些数据的功能......

1 个答案:

答案 0 :(得分:0)

或者你可以在MVC中使用RedirectToAction https://msdn.microsoft.com/en-us/library/system.web.mvc.controller.redirecttoaction(v=vs.118).aspx例如:

public ActionResult Index()
{
    var myTestId = 0;
    return RedirectToAction("Site", new { myId = myTestId });
}

public ActionResult Site(int myId)
{
    return RedirectToAction("Foo", new { testId = myId });
}