我在 MVC3 中有一个 Webgrid,它有一个编辑列。单击该列时,必须将行的 ID 传递到我编写了编辑操作的另一个操作页面。如何在单击 Webgrid 中的编辑列时运行 Javascript 函数?
问问题
502 次
1 回答
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 ...
)
于 2013-03-17T03:53:06.890 回答