ASP MVC 3 支持多行编辑

发布于 2024-10-27 00:40:09 字数 436 浏览 0 评论 0原文

我想知道 ASP MVC 3 是否内置支持编辑多行?我发现了相当多的 ASP MVC 2 示例,但没有找到 v3 的示例。我使用 Entify Framework 4 作为后端。假设您有一个

public class Order 
{
    public List<OderLine> OrderLines { get; set; }
}

public class OrderLine 
{
    public int Id {get; set;}
    public bool Checked {get; set;} 
    public int Amount {get; set;}
    public int Name {get; set;}
}

“创建或编辑订单”,应显示为包含订单信息的标题,然后是包含行的表格,其中每行都可以更改或删除,并且可以填写新行。

I was wondering if ASP MVC 3 has in-built support for editing multiple rows? I've found a fair bit of ASP MVC 2 examples floating around, but nothing for v3. I'm using Entify Framework 4 as the back-end. Suppose you have a

public class Order 
{
    public List<OderLine> OrderLines { get; set; }
}

public class OrderLine 
{
    public int Id {get; set;}
    public bool Checked {get; set;} 
    public int Amount {get; set;}
    public int Name {get; set;}
}

Creating or editing an order should be presented as a header with the order info and then a table with the lines, where each line can be changed, or deleted, and new rows can be filled out.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梦魇绽荼蘼 2024-11-03 00:40:09

ASP.NET MVC 没有对此类事物的内置支持。它支持模型、视图、控制器和一些 HTML 帮助程序。从那里你可以实现你想要的一切。您可以查看 MvcContrib GridTelerik Grid 用于创建漂亮的网格组件,允许您 CRUD 数据。

还有 WebGrid 帮助程序,它是 WebMatrix 的一部分,但这是我个人不喜欢也不推荐的东西,但有些人发现它很有用,因此也值得一试。

ASP.NET MVC has no built-in support for such things. It has support for Models, Views, Controllers and a couple of HTML helpers. From there you can implement everything you want. You may checkout the MvcContrib Grid or Telerik Grid for creating nice looking grid components allowing you to CRUD data.

There's also the WebGrid helper which is part of WebMatrix but this is something that I personally don't like and wouldn't recommend but some people find it useful so worth checking out as well.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文