calendar轉換成臺灣日期格式
- 2008-06-16
- 21862
- 0
calendar的年份預設是顯示為2008年,有時候因為需要我們是要民國的年份,此篇是從網路上找到的,記錄下來以免以後忘記。
測試頁面很簡單,拉一個calendar出來,然後在程式頁的page_load事件寫以下CODE
//設定台灣日曆 System.Globalization.CultureInfo cag = new System.Globalization.CultureInfo("zh-TW"); cag.DateTimeFormat.Calendar = new System.Globalization.TaiwanCalendar(); System.Threading.Thread.CurrentThread.CurrentCulture = cag; //秀出民國年時間(測試環境在用) Response.Write(DateTime.Now.ToShortDateString());
這樣子就完成啦
http://www.dotblogs.com.tw/puma/archive/2008/03/16/1660.aspx
回應討論