<%# 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.'
【參考連結】
- asp.net – eval を使用して日付の特定の FORMAT を適用する方法? – スタックオーバーフロー
- C#の – は何をしますか 0 の “{0:MM dd yyyy}” 行う? – スタックオーバーフロー
- String.Format メソッド (システム) | マイクロソフトドキュメント
- カスタムの日付と時刻の書式文字列 | マイクロソフトドキュメント
- 標準の日付と時刻の書式文字列 | マイクロソフトドキュメント