<%
set conn=Server.CreateObject("ADODB.Connection")
conn.Provider="Microsoft.Jet.OLEDB.4.0"
conn.Open "c:/webdata/northwind.mdb"
conn.Execute "Update tblSample set dateNULL = NULL WHERE ID = 10"
%>
---------
In case you are in the table design with the cursor on the date field, you can modify...