| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 432 人关注过本帖
标题:不能对提交多个ArticleID的值的数据进行更新
只看楼主 加入收藏
ysf0181
Rank: 16Rank: 16Rank: 16Rank: 16
等 级:版主
威 望:55
帖 子:914
专家分:2385
注 册:2006-10-4
结帖率:76.71%
收藏
已结贴  问题点数:20 回复次数:2 
不能对提交多个ArticleID的值的数据进行更新
dim ArticleID,Action,xgsql
  ArticleID=trim(request("ArticleID"))
  Action=Trim(Request("Action"))
  'response.write Action
 ' response.end
  if ArticleId="" or Action<>"Del" then
      response.write "<script>alert('参数不足!');history.back();</script>"
  end if
    if instr(ArticleID,",")>0 then
        dim idarr,i
      
        idArr=split(ArticleID)
        'response.write ubound(idArr)
       ' response.end
        for i = 0 to  ubound(idArr)
          ' response.write idarr(i)&"<br>"
            call xgArticle(clng(idarr(i)))
        next
    else
        response.write ArticleID
        response.end
        call xgArticle(clng(ArticleID))
    end if
   
function xgArticle(ID)

    xgsql="select * from jiaoyuanclass where ID=" & CLng(ID)
    Set xgrs= Server.CreateObject("ADODB.Recordset")
    xgrs.open xgsql,conn,1,3
        if xgrs("shehe")<>1 then
            response.write "<script>alert('未审核不能提交付款该记录!');history.back();</script>"
            response.write"<meta http-equiv=refresh content='1;url=jiaoyuansw.asp'>"
            response.End()
        end if
        xgrs.update
        xgrs("yifu")=1
        xgrs.update
        xgrs.close        
     response.write "<script>alert('记录提交成功!');</script>"
     response.write "<meta http-equiv=refresh content='0;url=jiaoyuansw.asp'>"
     response.End()
end function   
   
红色只能更新到第一个数据后面就不调用了,奇怪,但是可以输入多个ArticleID有效值。
搜索更多相关主题的帖子: ArticleID 数据 
2009-09-03 10:21
ysf0181
Rank: 16Rank: 16Rank: 16Rank: 16
等 级:版主
威 望:55
帖 子:914
专家分:2385
注 册:2006-10-4
收藏
得分:0 
function xgArticle(ID)

    xgsql="select * from jiaoyuanclass where ID=" & CLng(ID)
    Set xgrs= Server.CreateObject("ADODB.Recordset")
    xgrs.open xgsql,conn,1,3
        if xgrs("shehe")<>1 then
            response.write "<script>alert('未审核不能提交付款该记录!');history.back();</script>"
            response.write"<meta http-equiv=refresh content='1;url=jiaoyuansw.asp'>"
            response.End()
        end if
        xgrs.update
        xgrs("yifu")=1
        xgrs.update
        xgrs.close        
     response.write "<script>alert('记录提交成功!');</script>"
     response.write "<meta http-equiv=refresh content='0;url=jiaoyuansw.asp'>"
     response.End()
end function   
晕,自己找到原因了,谢谢。

ASP讨论QQ群:251346273
2009-09-03 10:38
ysf0181
Rank: 16Rank: 16Rank: 16Rank: 16
等 级:版主
威 望:55
帖 子:914
专家分:2385
注 册:2006-10-4
收藏
得分:0 
function xgArticle(ID)

    xgsql="select * from jiaoyuanclass where ID=" & CLng(ID)
    Set xgrs= Server.CreateObject("ADODB.Recordset")
    xgrs.open xgsql,conn,1,3
        if xgrs("shehe")<>1 then
            response.write "<script>alert('未审核不能提交付款该记录!');history.back();</script>"
            response.write"<meta http-equiv=refresh content='1;url=jiaoyuansw.asp'>"
            response.End()
        end if
        xgrs.update
        xgrs("yifu")=1
        xgrs.update
        xgrs.close        
     response.write "<script>alert('记录提交成功!');</script>"
     response.write "<meta http-equiv=refresh content='0;url=jiaoyuansw.asp'>"
     response.End()
end function   
晕,自己找到原因了,谢谢。

ASP讨论QQ群:251346273
2009-09-03 10:38
快速回复:不能对提交多个ArticleID的值的数据进行更新
数据加载中...
 
   



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

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