要使用DataFormatString格式化百分比,您可以在GridView或DataList等數據控件中的字段綁定中使用DataFormatString屬性。例如,假設您有一個字段名為"Percentage",您可以將DataFormatString設置為"{0:P2}"來將其格式化為百分比,其中"P2"表示保留兩位小數的百分比。
以下是一個示例,演示如何在GridView中使用DataFormatString格式化百分比:
<asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="false">
<Columns>
<asp:BoundField DataField="Percentage" HeaderText="Percentage" DataFormatString="{0:P2}" />
</Columns>
</asp:GridView>
這樣,當GridView綁定數據時,"Percentage"字段的值將以百分比形式顯示,并保留兩位小數。