使用ActionLink从视图到操作方法的值

时间:2014-05-13 08:56:07

标签: asp.net-mvc razor

我正在尝试使用 ActionLink

将值从视图传递到操作方法
 @Html.ActionLink("Click here", "GetvaluefromView", "ActionLink2", new { id = 3 }) 

我的控制器操作方法如下所示

 [HttpPost]
    public ActionResult GetvaluefromView(int  ? Str )
    {
        return View("Methodname");
        //http://localhost:1542/ActionLink2/Methodname
    }

但这并没有将值传递给行动方法。

我在这里遗漏了什么吗?

0 个答案:

没有答案