• 企业400电话
  • 微网小程序
  • AI电话机器人
  • 电商代运营
  • 全 部 栏 目

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    asp提示无效使用 Null: Replace

    使用REPLACE来将数据库里读出来的数据替换,如果字段不为空是正常,但如果
    为空时就出现以下提示:

    Microsoft VBScript 运行时错误 错误 '800a005e'

    无效使用 Null: 'Replace'

    主要问题就是sqlserver的字段为null,所以不能简单的为空判断,只能使用isnull

    可以先判断
    if isnull(rs("coutent"))=false then
    response.write("null")
    else
    response.write replace(rs("coutent"),chr(13),"br/>")
    end if

    测试:

    复制代码 代码如下:

    if isnull(keyword)=true then keyword=dxy_title
    if isnull(descriptions)=true then descriptions=dxy_title

    上一篇:ASP(VBScript)中整除和取余
    下一篇:ASP 连接 SQL SERVER 2008的方法
  • 相关文章
  • 

    © 2016-2020 巨人网络通讯 版权所有

    《增值电信业务经营许可证》 苏ICP备15040257号-8

    asp提示无效使用 Null: Replace asp,提示,无效,使用,Null,