Hi,
I have just picked up ASP a month ago and i am learning ASP fast with additional knowledge in C programming, few knowledge in query language and html. However, I receive the same error message whenever I use query language to modify my database

, as in using INSERT, UPDATE and DELETE. I attach the add data html and code along with this thread. The database only consist of a table call CDs that has 3 fields of data, which are artist, title and format. Hope someone can give me a hand here. Thanks!
Error Message:
Error Type:
Microsoft OLE DB Provider for ODBC Drivers (0x80004005)
[Microsoft][ODBC Microsoft Access Driver] Operation must use an updateable query.
Addcds.htm
<HTML>
<FORM METHOD="GET" ACTION="addcds.asp">
<H3>Add CD to Database</H3>
<B>Artist</B><BR>
<INPUT TYPE="TEXT" NAME="artist" MAXLENGTH="50"><P>
<B>Title</B><BR>
<INPUT TYPE="TEXT" NAME="title" MAXLENGTH="50"><P>
<B>Format</B><BR>
<INPUT TYPE="RADIO" NAME="format" VALUE="CDA" CHECKED> Album<BR>
<INPUT TYPE="RADIO" NAME="format" VALUE="CDS"> Single<P>
<INPUT TYPE="SUBMIT" VALUE="Add to database"><P>
<INPUT TYPE="RESET" VALUE="Clear">
</FORM>
</BODY>
</HMTL>
Addcds.asp
<%
artist=Request("artist")
title=Request("title")
format=Request("format")
Query = "INSERT INTO CDs (artist,title,format) VALUES ("
Query = Query & "'" & artist & "','" & title & "','" & format & "')"
Set DataConn = Server.CreateObject("ADODB.Connection")
DataConn.Open "records"
Set RSlist = Server.CreateObject("ADODB.recordset")
RSlist.Open Query,DataConn,3
%>
<HTML>
<BODY>
<H3>CD Added To Collection Database</H3>
<HR>
<SMALL><%=Query%></SMALL>
</BODY>
</HTML>