好吧,所以我的代碼工作正常,但我需要它添加一天到OrderDate,同時保持它在相同的格式yyyy-mm-dd
任何幫助極大讚賞!我需要添加一天到我的日期在我的代碼,試過DateAdd
<%
inDate = oRS("ordDate")
' get each date component
thisMonth = datepart("M",inDate)
thisDay = datepart("D",inDate)
thisYear = datepart("yyyy",inDate)
' check for the length of the month and day components
if len(thisMonth) < 2 then thisMonth = "0" & thisMonth
if len(thisDay) < 2 then thisDay = "0" & thisDay
' Create the date in your format you posted above
OrderDate = thisYear & "-" & thisMonth & "-" & thisDay
%>
我回來刪除的問題,我可以只使用:\t \t THISDAY =日期部分(「d」,使用DateAdd(「d」,1,銦酸)) – BWalt302
,將工作,但您可能希望保留記錄的原始日期。特別是如果你處理金錢交易。 –
此代碼的目的只是爲了生成預計發貨日期,這是大多數情況下總是在訂單後1天,有時是同一天。但是原始日期仍然可以在訂單表中找到。謝謝您的幫助!我繼續選擇你的答案作爲答案。 – BWalt302