C#MVC - 如何在Controller中传递一些方法参数作为参数?

时间:2013-11-20 16:54:49

标签: c# asp.net-mvc

我有一个像这样的控制器动作:

public ActionResult Test(string par)
{
    Model myMod = new Model();
    myMod.Attribute = par;
    return View(myMod);
}

在测试视图中,我想检索并打印该属性...
像这样:

@model Project.Models.Model

@Html.DisplayFor(model => model.Attribute)

但通过这种方式,我无法从动作中检索数据。

1 个答案:

答案 0 :(得分:2)

在您的模型中,该属性被称为Attribute,但在视图中,您引用的是Attrubute

@Html.DisplayFor(model => model.Attribute)