zoukankan      html  css  js  c++  java
  • 栅栏

      <div class="row" >
            <div class="col-md-12 col-sm-12 col-lg-12">
                <main class="bg-white">
                    <div class="tab-content">
                        <div class="tab-pane active" id="tabB">
                            <main class="post">
                                <h3>成功学生记录</h3>
                                <table class="table table-bordered text-center">
                                    <thead>
                                        <tr>
                                            <td><strong>学员姓名</strong></td>
                                            <td><strong>学员年级</strong></td>
                                            <td><strong>家教费用</strong></td>
                                            <td><strong>求教科目</strong></td>
                                            <td><strong>求教时间</strong></td>
                                            <td><strong>学生概况</strong></td>
                                          
                                        </tr>
                                    </thead>
                                    <tbody>

                                        @foreach (var item in list)
                                        {
                                            <tr>
                                                <td>@item.StudentName</td>
                                               
                                                <td>@(item.Grade)</td>
                                                <td>@(item.Mony)</td>
                                                <td>@item.Subject</td>
                                                <td>@item.TeachTime</td>
                                                <td>@(item.Remarks)</td>
                                               
                                            </tr>
                                        }

                                    </tbody>
                                </table>
                            </main>
                        </div>
                    </div>
                </main>
            </div>
        </div>
  • 相关阅读:
    linux 删除已输入的命令行
    LAMP编译参数查看
    mysql忘记密码的重置方法
    cmd大全_练习
    Parallel WebDriver executions using TestNG
    Internet Explorer for Mac the Easy Way: Run IE 7, IE8, & IE9 Free in a Virtual Machine
    linux delete files older than 3 days
    5 commands to check memory usage on Linux
    Base64 Encoding / Decoding in Node.js
    10 Useful du (Disk Usage) Commands to Find Disk Usage of Files and Directories
  • 原文地址:https://www.cnblogs.com/zyq-dan/p/10032534.html
Copyright © 2011-2022 走看看