-3
student_info siInfo = new student_info();
siInfo.Dob = Convert.ToString(dataReg.Tables[0].Rows[0]["Dob"]);
如何顯示從日期時間日期..如何將日期時間格式轉換爲Web服務中c#的日期?
student_info siInfo = new student_info();
siInfo.Dob = Convert.ToString(dataReg.Tables[0].Rows[0]["Dob"]);
如何顯示從日期時間日期..如何將日期時間格式轉換爲Web服務中c#的日期?
siInfo.Dob = Convert.ToDateTime(dataReg.Tables [0] .Rows [0] [ 「多波」])ToShortDateString();
認真嗎? ToShortDateString()沒有在你的IntelliSense中顯示? – Stu