downplus中的无效使用 Null: ‘replace’错误的解决方法
发布时间:2010-06-05 13:34:38 作者:佚名 我要评论
这个错误很早的时候已经遇到过一次了,想不到今天又冒出来了.这错误是在生成网站其他页面的时候冒出来的,先看看错误.说是用了无效了的replace,也就是说我的表中有个空的值
错误全部文本如下:
Microsoft VBScript 运行时错误 错误 '800a005e'
无效使用 Null: 'replace'
/XXX/inc_function.asp,行 764
于是乎.咱们来看看这段错误的代码,找到后台的inc_function.asp.找到760行附近的语句,代码如下:
sPath = DownLoad_FileSavePath
sPath = Replace(sPath,"\","/")
sPath = Replace(sPath,"{YYYY}",Year(SoftInsertDate),1,-1,1)
sPath = Replace(sPath,"{YYY}",Year(SoftInsertDate),1,-1,1)
sPath = Replace(sPath,"{YY}",right(Year(SoftInsertDate),2),1,-1,1)
sPath = Replace(sPath,"{Y}",right(Year(SoftInsertDate),2),1,-1,1)
sPath = Replace(sPath,"{MM}",Month(SoftInsertDate),1,-1,1)
sPath = Replace(sPath,"{M}",Month(SoftInsertDate),1,-1,1)
sPath = Replace(sPath,"{DD}",Day(SoftInsertDate),1,-1,1)
sPath = Replace(sPath,"{D}",Day(SoftInsertDate),1,-1,1)
sPath = Replace(sPath,"{ClassID}",SoftClassID,1,-1,1)
sPath = Replace(sPath,"{FileName}",SoftFrontStr&softid&"."&FileExtensionName,1,-1,1)
GetSoftUrl = SystemUrl&SoftFolderName&"/"&sPath
其中上面说的是第764行是这条语句;
sPath = Replace(sPath,"{ClassID}",SoftClassID,1,-1,1)
一看错误就知道了,原来是有个分类的ID是空的,但是我们使用
SELECT * FROM dp_softlist WHERE softclassid = NULL;
却查不到空的记录,于是乎,哥着急了,想了个笨办法,将今天添加的软件的ID全部拿过去,一起查询,语句如下:
SELECT * FROM dp_softlist WHERE softid
IN (1986,1983,1982,1981,1611,1980,843,1979,1978,1133,937,1976,1984,1975,1973,1845)
嘎嘎.找到了那2条空的记录,于是乎,咱们
DELETE dp_softlist WHERE softid IN(1984,1985)
重新生成.oh yeah!错误解决!~~
最后事实证明,空的记录是可以用is null来查询的.下面这条语句比上面用笨办法查ID的简单多了
SELECT * FROM dp_softlist WHERE softcreatedate IS NULL;
今天就说这么多…嘎嘎,有问题希望大家指出!!
Microsoft VBScript 运行时错误 错误 '800a005e'
无效使用 Null: 'replace'
/XXX/inc_function.asp,行 764
于是乎.咱们来看看这段错误的代码,找到后台的inc_function.asp.找到760行附近的语句,代码如下:
复制代码
代码如下:sPath = DownLoad_FileSavePath
sPath = Replace(sPath,"\","/")
sPath = Replace(sPath,"{YYYY}",Year(SoftInsertDate),1,-1,1)
sPath = Replace(sPath,"{YYY}",Year(SoftInsertDate),1,-1,1)
sPath = Replace(sPath,"{YY}",right(Year(SoftInsertDate),2),1,-1,1)
sPath = Replace(sPath,"{Y}",right(Year(SoftInsertDate),2),1,-1,1)
sPath = Replace(sPath,"{MM}",Month(SoftInsertDate),1,-1,1)
sPath = Replace(sPath,"{M}",Month(SoftInsertDate),1,-1,1)
sPath = Replace(sPath,"{DD}",Day(SoftInsertDate),1,-1,1)
sPath = Replace(sPath,"{D}",Day(SoftInsertDate),1,-1,1)
sPath = Replace(sPath,"{ClassID}",SoftClassID,1,-1,1)
sPath = Replace(sPath,"{FileName}",SoftFrontStr&softid&"."&FileExtensionName,1,-1,1)
GetSoftUrl = SystemUrl&SoftFolderName&"/"&sPath
其中上面说的是第764行是这条语句;
sPath = Replace(sPath,"{ClassID}",SoftClassID,1,-1,1)
一看错误就知道了,原来是有个分类的ID是空的,但是我们使用
SELECT * FROM dp_softlist WHERE softclassid = NULL;
却查不到空的记录,于是乎,哥着急了,想了个笨办法,将今天添加的软件的ID全部拿过去,一起查询,语句如下:
SELECT * FROM dp_softlist WHERE softid
IN (1986,1983,1982,1981,1611,1980,843,1979,1978,1133,937,1976,1984,1975,1973,1845)
嘎嘎.找到了那2条空的记录,于是乎,咱们
DELETE dp_softlist WHERE softid IN(1984,1985)
重新生成.oh yeah!错误解决!~~
最后事实证明,空的记录是可以用is null来查询的.下面这条语句比上面用笨办法查ID的简单多了
SELECT * FROM dp_softlist WHERE softcreatedate IS NULL;
今天就说这么多…嘎嘎,有问题希望大家指出!!
相关文章
- 这篇文章主要介绍了Fastadmin的安装与使用方法,需要的朋友可以参考下2020-08-06
安装FastAdmin时报1146 Table 'fastadmin.fa_admin' doesn't exist错误
有部分小伙伴在安装FastAdmin时报以下错误,SQLSTATE[42S02]: Base table or view not found: 1146 Table 'fastadmin.fa_admin' doesn't exist2020-08-05- BOM信息是文件开头的一串隐藏的字符,用于让某些编辑器识别这是个UTF-8编码的文件,也编辑器自动加上的这个会导致页面头部会出现一个空白行;如果是织梦的程序也会引起验证2020-02-17
- 在本篇文章里小编给大家整理的是关于苹果cms采集插件安装的步骤和方法,有需要的朋友们可以学习下。2019-12-05
- 在本篇文章里小编给大家整理的是关于苹果cms添加播放器的方法步骤,对此有需要的朋友们可以学习下。2019-12-05
- 在本篇文章里小编给大家分享的是关于苹果cms更换logo的方法和步骤,有需要的朋友们可以学习参考下。2019-12-05
- 在本篇文章里小编给大家整理的是关于海洋cms电影源码安装步骤方法以及相关知识点,有兴趣的朋友们学习下。2019-12-05
- 在本篇文章里小编给大家整理的是关于苹果CMS自适应手模板设置方法,有需要的朋友们参考学习下。2019-12-05
- 在本篇文章里小编给大家整理的是关于苹果海洋CMS自定义采集助手设置方法,有需要的朋友们学习下。2019-12-05
- 这篇文章主要为大家介绍了苹果cms添加幻灯片的操作方法,步骤很简单,有需要的朋友们跟着操作下。2019-12-02
最新评论