Cheers Buddy,
ive kinda changed the code..
<!--#include file="Topv1.asp" -->
<% Language=VBScript %>
<%
Dim Conn, dbPath
dbPath = Server.MapPath("/DEMO/db/specialoffersdb.mdb")
Set Conn = Server.CreateObject("ADODB.Connection")
Conn.Open "PROVIDER=MICROSOFT.JET.OLEDB.4.0; DATA SOURCE=" & dbPath
conn.Execute "INSERT INTO Special02 (location1,Depart,Hotel,info)
VALUES('" & Request.form("Locate1") & "','#" &
Request.form("depart") & "#','" & Request.form("accom1") &
"','" & Request.form("about1") & "')"
Response.Redirect "UpdateConfirm.asp"
Conn.close
%>
<!--#include file="bottomv2.asp" -->
but i get this message (date-d, is now depart, depart is manually entered text)
Microsoft JET Database Engine error '80004005'
Operation must use an updateable query.
/demo/db/update6.asp, line 11
here is the code that is sending to this page
Enter New product details.<P>
<form action="update6.asp" method="post">
<TABLE BORDERCOLOR="BLUE" BORDER="0" CELLPADDING="2" BGCOLOR="BLUE"><tr><td>
<Table class="main_font" CELLPADDING="0" CELLSPACING="4" bgcolor="#D6E4FC"><tr>
<td>Location:</td>
<TD>
<Input type="text" value="" name="locate1">
</select>
</td></tr>
<tr><TD>
Date:</td><td><Input type="text" value="" name="depart"></td></tr>
<tr><td>Hotel:</td><td>
<Input type="text" value="" name="accom1">
</td></tr>
<tr><td>
Description:</td><td><Input type="text" value="" name="about1"></td></tr>
<tr><td></td><td>
<Input type="Submit" value="Update" class="form_fields"></td></tr>
</table>
</td></tr>
</TABLE>
</centre>
</form>