如何使用javascript将值从webgrid传递到另一个操作页面?

时间:2013-03-17 03:05:46

标签: c# javascript asp.net-mvc-3

我在MVC3中有一个Webgrid,它有一个编辑列。单击列时,必须将行的ID传递到另一个操作页面,其中我已编写了编辑操作。如何在单击Webgrid中的编辑列时运行Javascript函数?

1 个答案:

答案 0 :(得分:0)

将其用于视图中的修改链接:

Html.ActionLink(article.Title, 
                "Item",   // <-- ActionMethod
                "Login",  // <-- Controller Name.
                new { ItemID = Model.ItemID }, // <-- Route arguments.
                null  // <-- htmlArguments .. which are none. You need this value
                      //     otherwise you call the WRONG method ...
                )