📜  要在 mvc 中单击按钮上的视图调用任何操作方法 - 无论代码示例

📅  最后修改于: 2022-03-11 14:58:03.732000             🧑  作者: Mango

代码示例1
BY LOVE
Here, Action name=Edit, ControllerName=Home.
@using (Html.BeginForm("Edit", "Home", new { Id = emp.Id }, FormMethod.Get))
                            {
                                
                            }
@using (Html.BeginForm("Delete", "Home", new { Id = emp.Id }, FormMethod.Post))
                            {
                                
                            }