如何实现编辑和删除MVC3剃刀的WebGrid?(How to achieve edit and d

2019-07-31 03:01发布

下面我给控制器,模型和视图。 运行后,电网与值显示,但我需要在同一页上编辑值,并删除该值。 我已经搜索并看到了一些例子,在对编辑,删除他们创建单独的索引,但我的需要是编辑和删除应同一个页面,而不是另一个页面上完成。 请给我一个解决方案。

控制器:

public ActionResult Index()
        {
            var PersonList = new List<Person>()
            {
            new Person(){Name="A", Age=20,Id =1},
            new Person(){Name="B",Age=45,Id =2},
            new Person(){Name="C", Age=30,Id =3},
            new Person(){Name="D",Age=55,Id =4},
            new Person(){Name="E", Age=30,Id =5},
            new Person(){Name="F",Age=25,Id =6},
            new Person(){Name="G", Age=30,Id =7},
            new Person(){Name="H",Age=25,Id =8},
            };

            return View(PersonList);
        }

类别:

public class Person
    {
        public string Name { get; set; }
        public int Age { get; set; }
    }

查看:

@model IEnumerable<edit.Models.Person>

@{
    ViewBag.Title = "Index";
}

<html>
<head>
<title>Index</title>
<style type="text/css">
.webGrid { margin: 4px; border-collapse: collapse; width: 300px; }
.header { background-color: #E8E8E8; font-weight: bold; color: #FFF; }
.webGrid th, .webGrid td { border: 1px solid #C0C0C0; padding: 5px; }
.alt { background-color: #E8E8E8; color: #000; }
.person { width: 200px; font-weight:bold;}
</style>
</head>
<body>
@{
var grid = new WebGrid(Model, canPage: true, rowsPerPage: 5);
grid.Pager(WebGridPagerModes.NextPrevious);
@grid.GetHtml(tableStyle: "webGrid",
headerStyle: "header",
alternatingRowStyle: "alt",
columns: grid.Columns(
grid.Column("Name", "Given Name", canSort: true, format:@<b>@item.Name</b>, style: "person"),
grid.Column("Age", "How Old?", canSort: true)
));
}
</body>
</html>

Answer 1:

@Yasser,这是非常危险的实现通过GET链接删除。 搜索引擎抓取的页面可能会删除您的所有信息。

这是更好的实现POST操作。 下面是一个例子:

在查看:

@functions{
  string Delete(dynamic p)
  {
    string actionController = Url.Action("Delete", "Admin", new {id=p.AccountId});
    return "<form style='display:inline;' method='post' action='" + actionController + "'><input type='submit' value='Delete' onclick=\"return confirm('Are you sure?')\"/></form>";
  }
}

...
grid.Column(header: "", format: p => Html.Raw(Delete(p)))

在控制器:

[HttpPost]
public ActionResult Delete(int id)
{
   PerformDelete(id);
   return RedirectToAction("Index");
}


Answer 2:

下面是一些你可以开始,

你将不得不首先生成一个名为“编辑”和“删除”,并且在每一个的WebGrid记录沿两个动作链接。

请参见本教程为。

这样的事情

grid.Column(format: (item) => Html.ActionLink("Edit", "ActionName", new { param1 = "send id here", param2 = "xtra param" }))
grid.Column(format: (item) => Html.ActionLink("Delete", "ActionName2", new { param1 = "hello", param2 = "bye" }))

希望这可以帮助。



Answer 3:

干得好...

http://www.dotnet-tricks.com/Tutorial/mvc/E2S9150113-Enhancing-WebGrid-with-Insert-Update-and-Delete-Operations.html

我认为你正在寻找这一点。



Answer 4:

您可以通过尝试这种内嵌编辑GridView的asp.net MVC和knockoutjs: www.anhbui.net/blog?id=kojs-1



文章来源: How to achieve edit and delete on Webgrid of MVC3 Razor?