Posts

Showing posts with the label C#

[C#] GridView中ItemTemplate中Encode且要千份位

GridView中ItemTemplate中Encode且要千份位 範例如下 <asp:TemplateField HeaderText="價格">  <ItemTemplate> <%# Server.HtmlEncode( string.Format("{0:$#,##0}",  Convert.ToInt64(Eval("testPrice"))) ) %> </ItemTemplate> </asp:TemplateField> 在BoundField之下 DataFormatString="{0:N0}" 參考資料: http://infofabwhat.blogspot.tw/2012/07/htmlgridview-boundfieldtemplatefield.html

[C# ] List

List List  表示可以依照索引存取的強型別物件清單。 方法 Add     將物件加入至 List<T> 的結尾。 AddRange     將特定集合的元素加入至 List<T> 的結尾。