日期:2014-05-17  浏览次数:20430 次

0x80040E14
错误类型:
Microsoft OLE DB Provider for ODBC Drivers (0x80040E14)
[Microsoft][ODBC SQL Server Driver][SQL Server]第 1 行: '<' 附近有语法错误。
/ckeditor/ckeditor/_samples/asp/gzixun1-3.asp, 第 18 行

附代码如下:
 <%
title = request.form("title")
ptype = request.form("ptype")
anthor = request.form("anthor")
news = request.form("editor1")
set conn1 = Server.CreateObject("ADODB.Connection")
conn1.open "driver={SQL Server};server=(local);uid=sa;pwd=123;database=wbw;"
tmpsql="update zixun set title='"&title&"',type='"&ptype&"',anthor='"&anthor&"',time1='"&now()&",news='"&news&"' where id='"&session("id")&"'"
conn1.execute tmpsql
session("gzixun1")=1
response.redirect "gzixun1-4.asp"
%> 

请高手帮帮忙。。。。。。拜托了。。。。。。

------解决方案--------------------
少了个引号
tmpsql="update zixun set title='"&title&"',type='"&ptype&"',anthor='"&anthor&"',time1='"&now()&"',news='"&news&"' where id='"&session("id")&"'"