2009-09-14 59 views
0

誰有人在Mvc中製作多行網格?我該怎麼做?請幫幫我。MVC中的多行網格

感謝

玉萍

+2

你是什麼意思的mvc? ASP.NET MVC? – giorgian 2009-09-14 06:43:07

+0

@ giorgian-我認爲ASP.NET MVC是一個很好的猜測 - 未知的其他問題都是關於這個的。 – RichardOD 2009-09-14 07:33:07

回答

0

這裏是你會怎麼做一般(記得在MVC無網格視圖!)

<% if (Model != null && Model.Count() > 0) %> 
    <% { %> 
     <table> 
      <tr> 
       <th> 
        Object property 1 name 
       </th> 
       <th> 
        Object property 2 name.. 
       </th> 
      </tr> 

     <% int i = 0; foreach (var item in Model) %> 
     <% { %> 

      <tr class="<%= i++ % 2 == 0 ? "cssPrimaryGridRow" : "cssAltGridRow" %>"> 

       <td> 
        <%= Html.Encode(item.Property1)%> 
       </td> 
       <td> 
        <%= Html.Encode(item.Property2)%> 
       </td> 
      </tr> 

     <% } %> 

     </table> 

    <% } %>