AI智能
改变未来

ASP 中 Application 不能更新,高手进


sql=\"select top 10   aa,bb,cc from tablea \"
set rs=server.CreateObject(\"adodb.recordset\")
rs.open sql,conn,1,1
cnt= rs.getrows()

\'------------------------ aa 数字 

Application(\"cnt\")=cnt

response.write \" Arry -------------------<br>\"
response.write cnt(0,0)&\"->\"
 cnt(0,0)=cnt(0,0)+1
response.write \"[\"&cnt(0,0)&\"]\"

response.write \"Application-------------------<br>\"
response.write Application(\"cnt\")(0,0)&\"->\"
 Application(\"cnt\")(0,0)=Application(\"cnt\")(0,0)+1
response.write \"[\"&Application(\"cnt\")(0,0)&\"]\"


为什么  Application 不能更新?
求解 

  • 点赞
  • 收藏
  • 分享
  • 文章举报

guimang0921发布了7 篇原创文章 · 获赞 0 · 访问量 211私信关注

赞(0) 打赏
未经允许不得转载:爱站程序员基地 » ASP 中 Application 不能更新,高手进