爲什麼下面的代碼引發異常:「從字符串」00-25-2011「轉換爲鍵入」Date「無效。「?從字符串「00-25-2011」到字符「Date」的轉換無效
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
Dim Test As Date
Test = "2012-01-25"
MsgBox(Test)
Test = Format(DateAdd("d", -31, Test), "mm-dd-yyyy")
MsgBox(Test)
End Sub
相同的代碼在VB6應用程序中成功運行。我不明白爲什麼月份部分是:00.
MsgBox方法在asp.net應用程序中做什麼?這是你的自定義方法嗎? – Shyju
@Shyju,msgbox是一個標準的.NET消息框。 – w0051977
在Web?我的意思是ASP.NET?您標記了ASP.NET! – Shyju