mvc 自学中

 http://www.cnblogs.com/chshnan/  mvc 常用处理

 

http://huaiyaohuaiyao.blog.163.com/blog/static/616290420110872941860/       mvc 常用处理

 

http://topic.csdn.net/u/20100922/15/8704bfc7-8ece-498a-bd8d-596c5f7d0296.html  mvc  验证问题

 

    <table  border="1" cellpadding="0" cellspacing="0" width="100%">
        <tr style="height:30px;">
            <th>线路名称</th>
            <th>出行日期</th>
            <th>人数</th>
            <th>支付金额</th>
            <th>支付时间</th>
        </tr>
        <% foreach (Entity00210003 item in Model.liGiftCardHistory)
           {%> 
           <tr style="height:30px;">
           <td><%= item.routeName %></td>
            <td><%= item.goDate.ToString("yyyy-MM-dd") %></td>
            <td><%= item.persons %></td>
            <td><%=item.total %></td>
            <td><%= item.payDate %></td>
            </tr>
           <%} %>
    </table>

你可能感兴趣的:(mvc 自学中)