我想顯示本地系統日期時間格式在服務器上的日期,但它採取的服務器日期時間格式的本地系統日期時間格式。在localhost運行時運行良好,但在服務器運行時,格式爲MM/dd/yyyy(US格式),與系統日期時間格式無關。我已經嘗試過這些但沒有想要的結果C#:在服務器
string DateTimeFormat = System.Globalization.CultureInfo.CurrentCulture.DateTimeFormat.ShortDatePattern
System.Threading.Thread threadForCulture = new System.Threading.Thread(delegate() { });
string DateTimeFormat = threadForCulture.CurrentCulture.DateTimeFormat.ShortDatePattern;
有沒有其他方法可以實現這個目標?
可以使用dt.ToString( 「DD/MM/YYYY」);這將日期對象(dt)轉換爲dd/MM/yyyy格式。 –
@SouvikGhosh,我不想要特定的格式。它必須按照本地系統日期時間格式進行更改,並在本地格式更改時進行更改 – Sanjay