Thanks for the advice and the quick response I am able to get my page to display but it shows this error
Provider error '80020005'
Type mismatch.
/robohelp/shpsmate/shpsmate v3/Hotadd.asp, line 18
Here is the adjusted code
Code:
<html>
<head>
<p>Add You're Stuff</P>
</Head>
<Body>
<Form action="hotadd.asp" method="post">
<input type="text" name="date">
<input type="text" name="Control">
<input type="submit" name="sub">
</body>
</HTML>
<%@Language = "VbScript"%>
<%
strConn = "DRIVER={Microsoft Access Driver (*.mdb)}; DBQ="&Server.mapPath("Hot Topics.mdb")
Set ObjRs=Server.CreateObject("ADODB.Recordset")
ObjRs.Open "Hottopic", objConn, strConn, adCmdTable
ObjRs.AddNew
'ObjRs("ID")=Request.form("ID")
ObjRs("Date")=Request.form("Date")
ObjRs("Control")=Request.form("Control")
'ObjRs("Name")=Request.form("Name")
'ObjRs("Comments")=Request.form("Comments")
'ObjRs("Contact")=Request.form("Contact")
ObjRs.Update
ObjRs.Close
Set ObjRs=Nothing
Response.write "<center><b>Record Added!</b></center>"
%>