欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

何时将数据装载到Application 或 Session 对象中去?

程序员文章站 2023-01-25 17:32:48
<%function getemploymentstatuslistdim dd = application(?...

%
function getemploymentstatuslist
dim d
d = application(?employmentstatuslist?)
if d = ?? then
' fetchemploymentstatuslist
函数从数据库取数据,返回一个数组
d = fetchemploymentstatuslist()
application(?employmentstatuslist?) = d
end if
getemploymentstatuslist = d
end function
%