如何在一个表行中显示两个客户 MVC 2
在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 ASP.NET MVC 中,第一件事是忘记您可能使用过的任何 WebForms 控件。像
ListView
这样的东西是无关紧要的。在 ASP.NET MVC 中,您使用模型、控制器和视图。因此,您可以首先定义一个视图模型:您的控制器应该填充该视图模型:
最后您将拥有一个强类型化为
CustomerViewModel[]
的视图,您可以在其中生成一个表: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:which your controller should fill:
and finally you have a view which is strongly typed to
CustomerViewModel[]
in which you could generate a table: