| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 841 人关注过本帖
标题:显示 函数未定义 0x80040E14 错误
取消只看楼主 加入收藏
liangfengfen
Rank: 2
等 级:论坛游民
帖 子:50
专家分:10
注 册:2010-8-22
结帖率:87.5%
收藏
 问题点数:0 回复次数:5 
显示 函数未定义 0x80040E14 错误
我 的代码运行到:

<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<!--#include file="public/appsetting.asp"-->
<!--#include file="public/ado.asp"-->
<!--#include file="public/components.asp"-->
<!--#include file="public/customers.asp"-->

<%
   dim  id,sql,uid
   id=request.QueryString("pid")
   uid="GetCustomerID()"
   
   sql="delete * from t_shopcar where c_code="& uid &" and p_code='"& id &"'"
   datasource.ExecuteCommand(sql)
   
   Set datasource=Nothing
   response.Redirect("shopcar.asp")
%>

就出错了,显示
Microsoft JET Database Engine
错 误 码:0x80040E14

错误代码:cmd.Execute
错误描述:表达式中 'GetCustomerID' 函数未定义。

可是我的GetCustomerID'是写在
<!--#include file="public/customers.asp"-->
里的<%
   function GetCustomerName()
     Dim infos,arr
     infos =Request.Cookies("LoginInfo")
     
     if infos <> "" then
        arr=split(infos,",")
        GetCustomerName=arr(1)
     else
        GetCustomerName=""
     end if
   end function
   
   function GetCustomerID()
      Dim infos,arr
      infos=Request.Cookies("LoginInfo")
      
      if infos<>"" then
         arr=split(infos,",")
         GetCustomerID=arr(0)
      else
         GetCustomerID=-1
      end if
   end function
%>

请帮忙看看啊

搜索更多相关主题的帖子: 函数 定义 
2010-08-22 23:19
liangfengfen
Rank: 2
等 级:论坛游民
帖 子:50
专家分:10
注 册:2010-8-22
收藏
得分:0 
回复 2楼 yms123
不加引号,就出现数据类型不匹配啊
2010-08-22 23:27
liangfengfen
Rank: 2
等 级:论坛游民
帖 子:50
专家分:10
注 册:2010-8-22
收藏
得分:0 
回复 4楼 wangjy500
哥 呀,你又出现了,都好久了 ,你都不理才发上来的
2010-08-22 23:31
liangfengfen
Rank: 2
等 级:论坛游民
帖 子:50
专家分:10
注 册:2010-8-22
收藏
得分:0 
Microsoft JET Database Engine
错 误 码:0x80040E07

错误代码:cmd.Execute
错误描述:标准表达式中数据类型不匹配。
2010-08-22 23:36
liangfengfen
Rank: 2
等 级:论坛游民
帖 子:50
专家分:10
注 册:2010-8-22
收藏
得分:0 
问一下

  sql="delete * from t_shopcar where c_code="& uid &" and p_code='"& id &"'"

  sql="delete * from t_shopcar where c_code="& uid &" and p_code="& id

有什么不同啊


[ 本帖最后由 liangfengfen 于 2010-8-22 23:42 编辑 ]
2010-08-22 23:39
liangfengfen
Rank: 2
等 级:论坛游民
帖 子:50
专家分:10
注 册:2010-8-22
收藏
得分:0 
回复 9楼 yms123
谢谢版主
2010-08-22 23:46
快速回复:显示 函数未定义 0x80040E14 错误
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.023654 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved