Ciao ragazzi vorrei che apparisse in automatico sempre il giorno corrente:
codice:
<select name="giorno"> 
<%  for ctInd=1 to 31  %> 
<option value="<%=ctInd%>"><%=ctInd%></option> 
<% next %> </select> </div> </td> 
<td width="10%">
<div align="center"> 
<select name="mese"> 
<% for ctInd=1 to 12 %> 
<option value="<%=ctInd%>"><%= monthName(ctInd)%></option> 
<% next %> </select> </div> </td> 
<td width="6%"> 
<div align="center"> 
<select name="anno"> 
<% for ctInd=datePart("yyyy",now) to datePart("yyyy",now) - 100 step -1 %> 
<option value="<%=ctInd%>"><%=ctInd%></option> 
<% next %> 
</select>
Al momento si imposta su 1 gennaio 2006

Consigli? grazie, come sempre e a buon rendere