I am receiving messages that my "database or object is read-only" when I run the following code:<br><br> 'Add to Database<br> Set rs = Server.CreateObject("ADODB.Recordset"
<br> rs.open "tblCritique", cxn,2 , 3<br> rs.AddNew<br> rs("Critic"
= strCritic<br> rs("MovieID"
= strMovieID<br> rs("Comment"
= strComment<br> rs("Summary"
= strSummary<br> rs("Value"
= strValue<br> rs.Update<br> rs.Close<br><br>My connection works. I am just trying to add these strings into my database.<br><br>What am I doing wrong?<br><br>Thanks<br>