Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
コントローラーメソッドへの表示
.ClientEvents(events => { events.OnDataBinding("onDB"); })
dbasemanが言ったように、挿入操作は、新しいデータキーで新しいレコードを生成するために使用されるフォーム値を送信します。また、デフォルトでパラメータの名前はidと呼ばれます-更新アクションメソッドでは、次のように取得できます。
[GridAction] [AcceptVerbs(HttpVerbs.Post)] public ActionResult Update(string id) { // code.. return View(); }