<html>
<head>
<title>Feedback Form</title>
<SCRIPT TYPE="text/javascript">
<!--
function get_radiobtn(id)
{
var r = document.getElementsByName(id );
var cnt = -1;
for (i =0; i < r.length; i++) {
if (r[i].checked) {
cnt = i;
return r[cnt].value;
}
}
return "";
}
function showSummary(frm)
{
if...
I suggest that the host web of your website may have a calendar control. does this help or are u developing standalone? If so, what is your server software?
<%
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...