I have an access table which stores newspaper stories for my online newspaper. On of the table records is publish which is just a yes or no option. <br><br>I've created an html form called submitter where I can add my stories. I have a menu option for the publish option that is set up to give values of yes or no depending on which one is selected. When the form is submitted it is posted to an asp page where I'm getting a type mismatch when a record is added with either publish yes or publish no. How can I convert the information selected in the submitter form to the type and format of the database.<br><br>This is kinda how the asp looks<br><br>dim publish<br>publish = Request.Form("publish"<br>story.AddNew<br> story("publish" = publish<br>story.update