在 MVC 2 中传递数据时,从控制器重定向到另一个控制器时,值未传递
是否可以将数据从一个控制器传递到另一个控制器?当我的第二个控制器被调用时,int id 显示错误的值:
我有一个控制器:
public ActionResult Index(int id)
{
return RedirectToAction("New", "NewProducts", id);
}
NewProductsController:
public string New(int id)// <--------id never has correct number when called
{
return "value: " + id;
}
Is it possible to pass data from one controller to another? When my second controller is called the int id is showing the WRONG value:
I have one controller:
public ActionResult Index(int id)
{
return RedirectToAction("New", "NewProducts", id);
}
NewProductsController:
public string New(int id)// <--------id never has correct number when called
{
return "value: " + id;
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要使用 RouteValueDictionary 或带有 id 属性的匿名类型作为路由值,否则它将使用
Int32
对象id
上的属性来填充路由值字典。You need to use either a RouteValueDictionary or an anonymous type with an id property for the route values otherwise it will use the properties on the
Int32
objectid
to fill the route values dictionary.希望它能起作用
public ActionResult Index(int id)
{
return RedirectToAction("New?id=" + id, "NewProducts");
}
Hope it will work
public ActionResult Index(int id)
{
return RedirectToAction("New?id=" + id, "NewProducts");
}