如何在一个表行中显示两个客户 MVC 2

发布于 2024-12-07 03:09:53 字数 1531 浏览 0 评论 0原文

在 asp.net 中,我使用 ListView 每行显示两个客户:

  <asp:ListView ID="CustListView" runat="server" 
                                GroupItemCount="2"  cellpadding="0" cellspacing="0"  style="border-collapse: collapse;border-color:#111111;width:100%;" >

                                <LayoutTemplate>
                                    <table>
                                        <tr>
                                          <td>
                                            <table cellpadding="0" cellspacing="5" >
                                                <asp:PlaceHolder runat="server" ID="groupPlaceHolder"></asp:PlaceHolder>
                                            </table>
                                          </td>
                                        </tr>
                                   </table>
                               </LayoutTemplate>

                               <GroupTemplate>
                               <tr>
                                <asp:PlaceHolder runat="server" ID="itemPlaceHolder"></asp:PlaceHolder>
                               </tr>
                               </GroupTemplate>

                               <ItemTemplate>
                                  <%#Eval("Customer.Name")%>

                               <ItemTemplate> 
               </ListView/>

我如何在 mvc 2.any 链接中做到这一点?

with asp.net ,i have used ListView to show tow customers per row:

  <asp:ListView ID="CustListView" runat="server" 
                                GroupItemCount="2"  cellpadding="0" cellspacing="0"  style="border-collapse: collapse;border-color:#111111;width:100%;" >

                                <LayoutTemplate>
                                    <table>
                                        <tr>
                                          <td>
                                            <table cellpadding="0" cellspacing="5" >
                                                <asp:PlaceHolder runat="server" ID="groupPlaceHolder"></asp:PlaceHolder>
                                            </table>
                                          </td>
                                        </tr>
                                   </table>
                               </LayoutTemplate>

                               <GroupTemplate>
                               <tr>
                                <asp:PlaceHolder runat="server" ID="itemPlaceHolder"></asp:PlaceHolder>
                               </tr>
                               </GroupTemplate>

                               <ItemTemplate>
                                  <%#Eval("Customer.Name")%>

                               <ItemTemplate> 
               </ListView/>

How can i do that in mvc 2.any links?

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

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

发布评论

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

评论(1

轻拂→两袖风尘 2024-12-14 03:09:54

在 ASP.NET MVC 中,第一件事是忘记您可能使用过的任何 WebForms 控件。像 ListView 这样的东西是无关紧要的。在 ASP.NET MVC 中,您使用模型、控制器和视图。因此,您可以首先定义一个视图模型:

public class CustomerViewModel
{
    public string Name { get; set; }
}

您的控制器应该填充该视图模型:

public ActionResult Index()
{
    var model = new[]
    {
        new CustomerViewModel { Name = "John" },
        new CustomerViewModel { Name = "Peter" },
        new CustomerViewModel { Name = "Mary" },
    };
    return View(model);
}

最后您将拥有一个强类型化为 CustomerViewModel[] 的视图,您可以在其中生成一个表:

<table>
    <thead>
        <tr>
            <th>Name</th>
        </tr>
    </thead>
    <tbody>
        <% for (var i = 0; i < Model.Length; i++) { %>
            <tr>
                <td><%= Html.DisplayFor(x => x[i].Name) %></td>
            </tr>
        <% } %>
    </tbody>
</table>

In ASP.NET MVC the first thing is to forget about any WebForms controls that you might have used. Things like ListView are irrelevant. In ASP.NET MVC you work with Models, Controllers and Views. So you could start by defining a view model:

public class CustomerViewModel
{
    public string Name { get; set; }
}

which your controller should fill:

public ActionResult Index()
{
    var model = new[]
    {
        new CustomerViewModel { Name = "John" },
        new CustomerViewModel { Name = "Peter" },
        new CustomerViewModel { Name = "Mary" },
    };
    return View(model);
}

and finally you have a view which is strongly typed to CustomerViewModel[] in which you could generate a table:

<table>
    <thead>
        <tr>
            <th>Name</th>
        </tr>
    </thead>
    <tbody>
        <% for (var i = 0; i < Model.Length; i++) { %>
            <tr>
                <td><%= Html.DisplayFor(x => x[i].Name) %></td>
            </tr>
        <% } %>
    </tbody>
</table>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文