私は次のコードを持っています
List<Department> depts = new List<Department>();
Department.Add(new Department() { DNo = 1, DName = "Accounting", DFloor="6" });
Department.Add(new Department() { DNo = 2, DName = "FInance", DFloor="3" });
このデータをGridViewにバインドして、次のように出力したいと思います。各thとtrのクラスを観察します。ASP.NETでこれを実現するにはどうすればよいですか?
<thead>
<tr>
<th class="DNo">DNo</th>
<th class="DName">DName</th>
<th class= "DFloor">DFloor</th>
</tr>
</thead>
<tr>
<td class="DNo">1</td>
<td class="DName">Accounting</td>
<td class="DFloor">6</td>
</tr>
<tr>
<td class="DNo">2</td>
<td class="DName">FInance</td>
<td class="DFloor">3</td>
</tr>