问题描述
- asp环境中如何把从文本域中获得的日期(格式为yyyy/mm/dd)加上特定天数后显示在新文本域中?
-
asp环境中如何把从文本域中获得的日期(格式为yyyy/mm/dd)加上特定天数后显示在新文本域中?
解决方案
d = CDate(文本框)
DateAdd("d", d, 天数)
Print d
时间: 2024-12-30 07:04:45
d = CDate(文本框)
DateAdd("d", d, 天数)
Print d