Microsoft VBScript 运行时错误 (0x800A000D) 类型不匹配:title

来源:百度知道 编辑:UC知道 时间:2024/06/30 16:41:46
<!--#include file="inc/conn.asp" -->
<%
a=request.form("newstitle")
b=request.form("newsauthor")
c=request.form("newscontent")
if a="" then
call title()
end if
if b="" then
call author()
end if
if c="" then
call content()
end if
set rs=server.CreateObject("adodb.recordset")
sql="select * from qd_news where newstitle='"&a&"'"
rs.open sql,conn,1,3

if not rs.eof then '判断新闻标题重复
response.Write("<script>alert('新闻标题重复');history.go(-1)</script>>")
else

rs.addnew '添加新记录
rs("newstitle")=a
rs("newsauthor")=b
rs("newscontent")=c
rs.update'更新数据库
rs.close'关闭记录集
set rs=nothing'释放资源
response.Write("<script language='javascript'>"&chr(

操作系统和应用系统有冲突吧?
盗版系统都多少会有这样的问题的
我们有时候也是
只是没有你这么严重 这么多
你换个版本的试试 还不行就换个通用点的系统

title方法在哪?