任何人知道最新的出生日期是什麼最好的方式我只能夠找到日期和時間,並試圖解析它作爲一個字符串不會更新或從數據庫中刪除我得到這個錯誤分析date.time出生日期
字符串未被識別爲有效的DateTime。
描述:執行當前Web請求期間發生未處理的異常。請查看堆棧跟蹤以獲取有關該錯誤的更多信息以及源代碼的位置。
異常詳細信息:System.FormatException:String未被識別爲有效的DateTime。
源錯誤:
Line 96: int labID = int.Parse(hdfID.Value.ToString()); Line 97: Line 98:
_strMessage(objLab.commitUpdate(labID, txt_patientidI.Text, txt_testCodeI.Text, txt_patientcodeI.Text, txt_ageI.Text, txt_refrangeI.Text, txt_result1I.Text, txt_result2I.Text, txt_resultDescI.Text, txt_sexI.Text, txt_testTypeI.Text, txt_unitsI.Text, txt_abnormalI.Text, Line 99:
(DateTime.ParseExact(txt_dobI.Text,"yyyy/mm/dd",null))),"update"); Line 100: _subRebind();
我應該怎麼使用使用SQL Server C#.NET IM出生日期要分析該字符串在我的文本框感謝顯示
什麼「txt_textbox.Text」的值是否正確? –