ASP.NET Gridview 欄位格式用 DataFormatString

ASP.NET Gridview 欄位格式用 DataFormatString

之前在處理欄立格式時

習慣在SQL查詢時就先設定好

但是如果想在頁面上做設定也是可以的

用DataFormatString

<asp:BoundField DataField="UPrice" DataFormatString=""{0:C}"" HeaderText="UPrice" SortExpression="UPrice" />

 

參考:

https://docs.microsoft.com/zh-tw/dotnet/api/system.web.ui.webcontrols.boundfield.dataformatstring?view=netframework-4.8

 

 

自我LV~