我在MVC3中有一个Webgrid,它有一个编辑列。单击列时,必须将行的ID传递到另一个操作页面,其中我已编写了编辑操作。如何在单击Webgrid中的编辑列时运行Javascript函数?
答案 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 ...
)