asp 数组显示方法

清华大佬耗费三个月吐血整理的几百G的资源,免费分享!....>>>

const genderStr = "0|女|,1|男|"
function arrShow(id,str)
	list=Split(str,",")
	for each row in list
		cell=Split(row,"|")
		if cell(0) = ""&id&"" then
			show = cell(1)
		end if
	next
	arrShow = show
end function