ASP.Net アプリケーション内の GridView に小さな進行状況バーを表示しようとしています。私はItemTemplateでそれをやろうとしています。
<ItemTemplate>
<table width="100%">
<tr>
<td style="width: 75%; background-color: red"></td>
<td style="width: 25%; background-color: green" ></td>
</tr>
</table>
</ItemTemplate>
行内のいくつかの値の計算に基づいて幅のパーセンテージを設定したいと考えています。
Evalでどうにかできますか?または、コードビハインドを行う必要がありますか?