Please excuse any condensending tone that you may gather from this post as their is none intended. I do not mind helping people on the forums but i understand that the people that are posting questions have at least beginner knowledge of the subject they are posting on and, moreover, they understand the concepts of that particular subject. To that end, I think maybe you should pick up a few books on ASP (Wrox has some good ones) as I think you are not very familiar with the language at all.
Secondly, LEARN how to code. I understand that you are using the tools available to your (Dreamweaver) but you arent learning anything and that becomes extremely important in situations like this; you didn't write the code so you don't know how to trouble shoot it.
Lastly: INSERT INTO table(sometextcolumn)Values('I am a Programmer') that was an example of a string literal being inserred into your database, it was not meant to be a functional piece of code that you could use in your application.
To PUT (aka INSERT) the checkbox value into a database you would do INSERT INTO table(cc)Values(" & Request.Form("checkbox") &")"
Checkbox here is the name of your form element that is a checkbox.
================================================== =========
I will only tell you how to do it, not do it for you.
Unless, of course, you want to hire me to do work for you.
================================================== =========
Read this if you want to know how to get a correct reply for your question:
http://www.catb.org/~esr/faqs/smart-questions.html
^^Took that from planoie's profile^^
^^Modified text taken from gbianchi profile^^
================================================== =========