……
<select size="1" name="month_tq"> <% year_tq1=year_gl1 month_tq1=month_gl1 date_tq1=date_gl1 date1_str=date_tq1&"-"&month_tq1&"-"&year_tq1 date1=cdate(date1_str) date2=dateadd("d",1,date1) date2_str=cstr(date2) date_tq2=mid(date2_str,1,2) month_tq2=mid(date2_str,4,2) year_tq2=mid(date2_str,7,2) %> <option value="<%=month_tq1%>" selected><%=month_tq1%></option> <% if month_tq1<>month_tq2 then %> <option value="<%=month_tq2%>"><%=month_tq2%></option> <% end if %> </select></font><font size="2">月<select size="1" name="date_tq"> <option value="<%=date_tq1%>" selected><%=date_tq1%></option> <option value="<%=date_tq2%>"><%=date_tq2%></option> </select>日
……
在上述程序段中,year_tq1为形如"04"或"05"的字符串
而month_tq1为形如"01"——"12"的字符串
date_tq1为形如"01"——"31"的字符串
原想通过上述程序段实现下述功能:
上一工序的生产日期已知(假设为09月04日),则下一工序的生产日期要么为09月04日,要么为09月05日
可运行后,发现上述程序段并不能实现。且错得离普!
请大虾们不吝指教,程序段到底该怎么写啊?