为您找到"
...Microsoft VBScript 运行时错误 (0x800A000D)类型不匹配: '[st...
"相关结果约100,000,000个
response.Write("<center><form action="showlist.asp" method="post">")if rs.pagecount>1 then response.Write("<input type="submit" value="上一页" name="nextpage">"&"")end if if(session("abspage"))<rs.pagecount then response.Write("<input type="submit" value="下一页" ...
ASP不支持这样的写法.if rs("type")=1 then type1="应届毕业生" and lianjie="search.asp?type=1" end if 改为:if rs("type")=1 then type1="应届毕业生"lianjie="search.asp?type=1"end if 其他类似.
MicrosoftVBScript运行时错误(0x800A000B)--被零除 MicrosoftVBScript运行时错误(0x800A000D)--类型不匹配 MicrosoftVBScript运行时错误(0x800A000E)--字符串空间不够 MicrosoftVBScript运行时错误(0x800A0011)--不能执行所需的操作 MicrosoftVBScript运行时错误(0x800A001C)--堆栈溢出 MicrosoftVBScript运行时错误(0x...
count=Cint(request("count"))由于入参request("count")可能为NULL,所以类型转换出错。
这个是数据库的类型不匹配,是不是数据库类型不是数字 还是你提交的是文字?第九行应该是“单价”数字才对,还是数字带小数点了?更改数据库的类型就能解决了。
<!--#include file="conn.asp" --> < liuback=Request.Form("liuback")if liuback="" then response.write"<Script>alert('请回复留言!');history.go(-1);</Script>"else dim sql,rs sql="select * from (liuy) where ID='" & ID & "'"set rs=server.createobject("adodb....
函数的写法是对的.你自己把你的代码写成 a=request.Form("passwords")if len(a)<6 or len(a)>16 or not is_user(cstr(a)) then response.write"<script language=javascript>alert('密码为6到16个字母或数字,请您再检查一下!');history.go(-1)</script>"end if 看看得不得?
conn.provider="sqloledb"provstr="Server=HomeCYH;DataBase=CPXS;UID=cpuser;PWD=12345;"代码有误。另外,检查一下账号cpuser可访问的数据库是否包括CPXS。自己计算机名是否为HomeCYH
你必须指定为脚本在服务器端运行才可。<script runat="server" language="vbscript"> sub Out()...</script> 然后在调用它的asp文件众include就可以了。如果你想动态调用,那么使用Server.execute()方法。
aa=request.form("aa")bb=request.form("bb")cc=request.form("cc")dd=request.form("dd")ff=request.form("ff")ee=dateadd("m",-3,dd)set rs=server.createobject("adodb.recordset")sql="select * from test"rs.open sql,conn,1,3 rs("aa")=aa rs("bb")=bb rs("cc")=cc r...