The syntax error is probably be caused by the app trying to insert a string like this:
dim newtext
newtext = "Hello! It's very warm outside"
In this case, your insert fails because of the '' in the newtext string because it causes termination of the SQL string when its executed. Replace ' with '' and that will solve your problem.
The unspecified error I can not help you with.
================================================== =========
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
================================================== =========
Technical Editor for:
Professional Search Engine Optimization with ASP.NET
http://www.wiley.com/WileyCDA/WileyT...470131470.html
================================================== =========
Why can't Programmers, program??
http://www.codinghorror.com/blog/archives/000781.html
================================================== =========