<%# Eval("SDate", "{0:yyyy/MM/dd}") %> // 0: 表示定義整個括號裡面的第 0 個變數要採用此日期格式。 // 以下為兩個變數的範例。 string s = String.Format("At {0}, the temperature is {1}°C.", DateTime.Now, 20.4); Console.WriteLine(s); // Output similar to: 'At 4/10/2015 9:29:41 AM, the temperature is 20.4°C.'
【參考連結】
- 网 – 如何使用 eval 应用特定的日期格式? – 堆栈溢出
- C# – 什么是 0 在 “{0:MM dd yyyy}” 做? – 堆栈溢出
- String.Format 方法 (系统) | 微软文档
- 自订日期与时间格式字串 | 微软文档
- 标准日期和时间格式字串 | 微软文档